From 97b03de171684e484b85c9700dc5584740caaf53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Dunglas?= Date: Thu, 7 Dec 2023 12:04:35 +0100 Subject: [PATCH] ci(docker): only mark tagged versions as latest --- .github/workflows/docker.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index 703004fcb..6f753eb4e 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -39,7 +39,6 @@ jobs: echo platforms="$(jq -c 'first(.target[]) | .platforms' <<< "$METADATA")" } >> "$GITHUB_OUTPUT" env: - LATEST: '1' # TODO: unset this variable when releasing the first stable version SHA: ${{github.sha}} VERSION: ${{github.ref_type == 'tag' && github.ref_name || github.sha}} build: @@ -100,7 +99,6 @@ jobs: *.cache-to=type=gha,scope=${{github.ref}}-${{matrix.platform}} ${{fromJson(needs.prepare.outputs.push) && '*.output=type=image,name=dunglas/frankenphp,push-by-digest=true,name-canonical=true,push=true' || ''}} env: - LATEST: '1' # TODO: unset this variable when releasing the first stable version SHA: ${{github.sha}} VERSION: ${{github.ref_type == 'tag' && github.ref_name || github.sha}} -