Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use environment file instead of set-output in dispatch step of publish.yml #1055

Merged
merged 1 commit into from
Mar 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
ChrisSchinnerl marked this conversation as resolved.
Show resolved Hide resolved

- 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 }}"
}
Loading