Skip to content

Commit

Permalink
Use environment file instead of set-output in dispatch step of publis…
Browse files Browse the repository at this point in the history
…h.yml (#1055)
  • Loading branch information
ChrisSchinnerl authored Mar 12, 2024
2 parents cc1c619 + c087c6b commit 5b5182a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}"
}

0 comments on commit 5b5182a

Please sign in to comment.