From 976f4265c99f5cf503134cc68b8318c5263383ae Mon Sep 17 00:00:00 2001 From: Michael Stegeman Date: Mon, 12 Oct 2020 12:01:00 -0800 Subject: [PATCH] Replace deprecated set-env command. --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ab2bf87..36a74ef 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,8 +13,8 @@ jobs: - uses: actions/setup-node@v1 with: node-version: 12 - - name: Set env - run: echo ::set-env name=RELEASE_VERSION::$(echo ${GITHUB_REF:11}) + - name: Set release version + run: echo "RELEASE_VERSION=${GITHUB_REF:11}" >> $GITHUB_ENV - name: Create Release id: create_release uses: actions/create-release@v1.0.0