From c087c6b6c383010d996c859ddd27b0b6e6b51939 Mon Sep 17 00:00:00 2001 From: Chris Schinnerl Date: Mon, 11 Mar 2024 17:35:50 +0100 Subject: [PATCH] publish.yml: use environment file instead of set-output --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 824f69231..73b96965a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -263,7 +263,7 @@ jobs: steps: - name: Extract Tag Name id: get_tag - run: echo "::set-output name=tag_name::${GITHUB_REF#refs/tags/}" + run: echo "tag_name=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV - name: Repository Dispatch uses: peter-evans/repository-dispatch@v3 @@ -274,7 +274,7 @@ jobs: client-payload: > { "description": "Renterd: The Next-Gen Sia Renter", - "tag": "${{ steps.get_tag.outputs.tag_name }}", + "tag": "${{ env.tag_name }}", "project": "renterd", "workflow_id": "${{ github.run_id }}" } \ No newline at end of file