From 8200b09026d691025fd3e93b2a66b189dbde4933 Mon Sep 17 00:00:00 2001 From: David Dal Busco Date: Mon, 16 Jun 2025 19:20:27 +0200 Subject: [PATCH 1/3] feat: init full branch --- action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yaml b/action.yaml index 7dba812..808e5ba 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-full' 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 54cac8835df6bd3053dc943f5bd363c7c7b5360d Mon Sep 17 00:00:00 2001 From: David Dal Busco Date: Fri, 13 Feb 2026 18:00:34 +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