From 786c5d217fb0e4e79e3d2aea6b66fdb398143984 Mon Sep 17 00:00:00 2001 From: k4yt3x Date: Wed, 22 Mar 2023 00:58:05 +0000 Subject: [PATCH] replaced pipeline set-output with environment file --- .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 44349120..052f7f39 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,10 +19,10 @@ jobs: steps: - name: Get app name id: get_appname - run: echo ::set-output name=APPNAME::${{ github.event.repository.name }} + run: echo APPNAME=${{ github.event.repository.name }} >> $GITHUB_OUTPUT - name: Get version id: get_version - run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//} + run: echo VERSION=${GITHUB_REF/refs\/tags\//} >> $GITHUB_OUTPUT create-release: needs: