From 35a183a492d3f53b148d4f9510e8c68f98455bc3 Mon Sep 17 00:00:00 2001 From: Arpit Mohan Date: Fri, 23 Sep 2022 05:57:24 +0200 Subject: [PATCH] ci: Fixing the github release workflow to push the latest tags for Docker images (#16999) --- .github/workflows/github-release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/github-release.yml b/.github/workflows/github-release.yml index 1b739bdbf9..08fddff194 100644 --- a/.github/workflows/github-release.yml +++ b/.github/workflows/github-release.yml @@ -240,7 +240,7 @@ jobs: # Only build & tag with latest if the tag doesn't contain beta - name: Build and push client image latest - if: contains(needs.prelude.outputs.tag, 'beta') == 'false' + if: needs.prelude.outputs.is_beta == 'false' uses: depot/build-push-action@v1 with: context: app/client @@ -261,7 +261,7 @@ jobs: # Only build & tag with latest if the tag doesn't contain beta - name: Build and push fat image latest - if: contains(needs.prelude.outputs.tag, 'beta') == 'false' + if: needs.prelude.outputs.is_beta == 'false' uses: depot/build-push-action@v1 with: context: . @@ -284,7 +284,7 @@ jobs: # Only build & tag with latest if the tag doesn't contain beta - name: Build and push server image latest - if: contains(needs.prelude.outputs.tag, 'beta') == 'false' + if: needs.prelude.outputs.is_beta == 'false' uses: depot/build-push-action@v1 with: context: app/server @@ -305,7 +305,7 @@ jobs: # Only build & tag with latest if the tag doesn't contain beta - name: Build and push RTS image latest - if: contains(needs.prelude.outputs.tag, 'beta') == 'false' + if: needs.prelude.outputs.is_beta == 'false' uses: depot/build-push-action@v1 with: context: app/rts