From cc469f8eb8a2f74c3cf621fb3184dc5a36d578ce Mon Sep 17 00:00:00 2001 From: rtxa Date: Thu, 13 Jul 2023 04:05:46 -0300 Subject: [PATCH] CI: Fix deprecation messages of set-output --- .github/workflows/amxx.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/amxx.yml b/.github/workflows/amxx.yml index 34a3cb7..4082c58 100644 --- a/.github/workflows/amxx.yml +++ b/.github/workflows/amxx.yml @@ -116,8 +116,8 @@ jobs: - name: Get current tag and commit SHA for artifact naming id: naming run: | - echo "::set-output name=tag::$(git describe --tags --abbrev=0)" - echo "::set-output name=sha_short::$(git rev-parse --short HEAD)" + echo "tag=$(git describe --tags --abbrev=0)" >> $GITHUB_OUTPUT + echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT - name: Upload AG Mod X package for Linux uses: actions/upload-artifact@master