From dea4e32c50a2dc5f362b976419e3c79111147967 Mon Sep 17 00:00:00 2001 From: ChristopherHX Date: Thu, 16 Mar 2023 22:49:26 +0100 Subject: [PATCH] [no ci] Fix publishing `*-latest` tags for flavours The last build of the tag has a `20220215` label, just before refactoring from bash to powershell Fixes https://github.com/nektos/act/issues/1684 --- .github/workflows/build-ubuntu.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-ubuntu.yml b/.github/workflows/build-ubuntu.yml index 49b48a6..7432975 100644 --- a/.github/workflows/build-ubuntu.yml +++ b/.github/workflows/build-ubuntu.yml @@ -298,7 +298,7 @@ jobs: shell: pwsh if: ${{ ( github.event_name != 'pull_request' && github.event_name != 'push' && !env.ACT ) }} env: - TAG: ${{ matrix.TYPE }}-${{ matrix.TAG }}-${{ env.PART_TAG }} + TAG: ${{ matrix.TYPE }}-${{ matrix.TAG }} FROM_IMAGE: ghcr.io/${{ env.SLUG }} FROM_TAG: act-${{ matrix.TAG }}-${{ env.PART_TAG }} BUILD_TAG_VERSION: ${{ env.PART_TAG }}