From 1ee561ebd5790e8cff312dc48f9aa2eceac993a4 Mon Sep 17 00:00:00 2001 From: bhashinee Date: Fri, 27 Nov 2020 15:52:25 +0530 Subject: [PATCH] Fix ENV creation in the release workflow --- .github/workflows/publish-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 7d050057..aa13f369 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -17,7 +17,7 @@ jobs: with: java-version: 11 - name: Set version env variable - run: echo ::set-env name=VERSION::$((grep -w "version" | cut -d= -f2) < gradle.properties | cut -d- -f1) + run: echo "VERSION=$((grep -w 'version' | cut -d= -f2) < gradle.properties | cut -d- -f1)" >> $GITHUB_ENV - name : Pre release depenency version update env: GITHUB_TOKEN: ${{ secrets.BALLERINA_BOT_TOKEN }}