From 3818f759f071145118fa4299eab2490f792c8a6f Mon Sep 17 00:00:00 2001 From: Chris Kankiewicz Date: Wed, 19 Mar 2025 11:03:38 -0700 Subject: [PATCH] Removed use of (deprecated) set-output --- .github/workflows/ci-suite.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-suite.yaml b/.github/workflows/ci-suite.yaml index ea2fe0b..6170d8a 100644 --- a/.github/workflows/ci-suite.yaml +++ b/.github/workflows/ci-suite.yaml @@ -159,8 +159,7 @@ jobs: uses: actions/checkout@v4 - name: Get Tag - id: vars - run: echo ::set-output name=tag::${GITHUB_REF#refs/*/} + run: echo "TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV - name: Build Artifact run: make artifacts @@ -168,7 +167,7 @@ jobs: - name: Publish Release uses: softprops/action-gh-release@v2 with: - name: v${{ steps.vars.outputs.tag }} + name: v${{ env.TAG }} draft: true files: | artifacts/DirectoryLister-${{ steps.vars.outputs.tag }}.tar.gz