From ee0e4fa4b522b80b9e4f033fb51ce610c1a34838 Mon Sep 17 00:00:00 2001 From: Alexander Rolek Date: Fri, 11 Dec 2020 16:07:59 -0800 Subject: [PATCH] Fixed GH Action env syntax --- .github/workflows/on_release_publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/on_release_publish.yml b/.github/workflows/on_release_publish.yml index bd414b538..617e88d67 100644 --- a/.github/workflows/on_release_publish.yml +++ b/.github/workflows/on_release_publish.yml @@ -45,7 +45,7 @@ jobs: name: version - name: Set tegola version - run: echo "::set-env name=VERSION::$(cat version/version.txt)" + run: echo "VERSION=$(cat version/version.txt)" >> $GITHUB_ENV - name: Set up Go 1.14 uses: actions/setup-go@v2 @@ -140,7 +140,7 @@ jobs: name: version - name: Set tegola version - run: echo "::set-env name=VERSION::$(cat version/version.txt)" + run: echo "VERSION=$(cat version/version.txt)" >> $GITHUB_ENV - name: Build and tag Docker container run: | @@ -176,7 +176,7 @@ jobs: name: version - name: Set tegola version - run: echo "::set-env name=VERSION::$(cat version/version.txt)" + run: echo "VERSION=$(cat version/version.txt)" >> $GITHUB_ENV - name: Set up Go 1.14 uses: actions/setup-go@v1