From c6285cdf9d68866922de66e234d93c0e3d08de58 Mon Sep 17 00:00:00 2001 From: Ben Reedy Date: Sun, 27 Feb 2022 17:02:05 +1000 Subject: [PATCH] Fix VERSION env variable for image push Powershell uses $Env: prefix for environment variables. Signed-off-by: Ben Reedy --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cc599beb..895e4258 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -187,7 +187,8 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - VERSION=latest make push-all + $Env:VERSION = 'latest' + make push-all - name: Release if: startsWith(github.ref, 'refs/tags/')