From 44c622300afd8007b85dc7bfb2ce44300f06d361 Mon Sep 17 00:00:00 2001 From: David Dal Busco Date: Mon, 16 Jun 2025 19:20:11 +0200 Subject: [PATCH 1/3] feat: init slim branch --- action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yaml b/action.yaml index 7dba812..42055d8 100644 --- a/action.yaml +++ b/action.yaml @@ -12,4 +12,4 @@ outputs: runs: using: 'docker' - image: 'docker://junobuild/action:0.3.2' + image: 'docker://junobuild/action:0.3.2-slim' From db848970abb9dd270ef92f05a997119e099f6b88 Mon Sep 17 00:00:00 2001 From: David Dal Busco Date: Fri, 13 Feb 2026 17:06:18 +0100 Subject: [PATCH 2/3] Reapply "feat: skip publishing slim, full and latest on pre-release (#78)" (#80) This reverts commit 125c6c7a7358ce0f0d573424bb1e63e127e7bcce. --- .github/workflows/publish.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 80c9b26..34d6e1f 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -39,6 +39,6 @@ jobs: push: true tags: | ${{ env.IMAGE_NAME }}:${{ env.VERSION }}${{ contains(matrix.dockerfile, 'full') && '-full' || (contains(matrix.dockerfile, 'slim') && '-slim' || '') }} - ${{ env.IMAGE_NAME }}:${{ contains(matrix.dockerfile, 'slim') && 'slim' || 'full' }} - ${{ env.IMAGE_NAME }}:${{ contains(matrix.dockerfile, 'slim') && 'latest' || 'full' }} - ${{ contains(matrix.dockerfile, 'slim') && format('{0}:{1}', env.IMAGE_NAME, env.VERSION) || '' }} \ No newline at end of file + ${{ !github.event.release.prerelease && env.IMAGE_NAME }}:${{ contains(matrix.dockerfile, 'slim') && 'slim' || 'full' }} + ${{ !github.event.release.prerelease && env.IMAGE_NAME }}:${{ contains(matrix.dockerfile, 'slim') && 'latest' || 'full' }} + ${{ !github.event.release.prerelease && contains(matrix.dockerfile, 'slim') && format('{0}:{1}', env.IMAGE_NAME, env.VERSION) || '' }} \ No newline at end of file From c648d765b308dd66f44f78eb147a4d90d9ec5ab1 Mon Sep 17 00:00:00 2001 From: David Dal Busco Date: Fri, 13 Feb 2026 18:00:16 +0100 Subject: [PATCH 3/3] chore: revert --- .github/workflows/publish.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 34d6e1f..80c9b26 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -39,6 +39,6 @@ jobs: push: true tags: | ${{ env.IMAGE_NAME }}:${{ env.VERSION }}${{ contains(matrix.dockerfile, 'full') && '-full' || (contains(matrix.dockerfile, 'slim') && '-slim' || '') }} - ${{ !github.event.release.prerelease && env.IMAGE_NAME }}:${{ contains(matrix.dockerfile, 'slim') && 'slim' || 'full' }} - ${{ !github.event.release.prerelease && env.IMAGE_NAME }}:${{ contains(matrix.dockerfile, 'slim') && 'latest' || 'full' }} - ${{ !github.event.release.prerelease && contains(matrix.dockerfile, 'slim') && format('{0}:{1}', env.IMAGE_NAME, env.VERSION) || '' }} \ No newline at end of file + ${{ env.IMAGE_NAME }}:${{ contains(matrix.dockerfile, 'slim') && 'slim' || 'full' }} + ${{ env.IMAGE_NAME }}:${{ contains(matrix.dockerfile, 'slim') && 'latest' || 'full' }} + ${{ contains(matrix.dockerfile, 'slim') && format('{0}:{1}', env.IMAGE_NAME, env.VERSION) || '' }} \ No newline at end of file