From c2d82b31950305115934c9ffcef4d5503176dd37 Mon Sep 17 00:00:00 2001 From: Jason Kulatunga Date: Wed, 9 Aug 2023 11:49:58 -0700 Subject: [PATCH] fixing event type for `latest` docker image tag. --- .github/workflows/docker.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index 74ffa0b6..4c786e5f 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -49,7 +49,7 @@ jobs: with: flavor: | # only latest if push has a tag and we're building the "main" flavor - latest=${{ github.event_name == 'push' && matrix.flavor == 'main' && github.ref_type == 'tag' }} + latest=${{ github.event_name == 'release' && matrix.flavor == 'main' && github.ref_type == 'tag' }} tags: | # if this is a tag'd build, prefix it with the flavor (eg. main-v1.2.3 and sandbox-v1.2.3) type=ref,event=tag,prefix=${{ matrix.flavor }}-