From 60c8bf231e6d7734ad31d2c434b06901cebbf51c Mon Sep 17 00:00:00 2001 From: x1unix Date: Tue, 8 Feb 2022 21:19:24 +0200 Subject: [PATCH] ci: use new env var syntax --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e4a7eac5..92b18211 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,7 +39,7 @@ jobs: path: "**/node_modules" key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} - name: Set release version - run: echo ::set-env name=RELEASE_VERSION::${GITHUB_REF#refs/*/v} + run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/v}" >> $GITHUB_ENV - name: Build Docker image run: | make docker-image TAG=${{ env.RELEASE_VERSION }} GTAG=${{ secrets.GTAG }}