Skip to content

Commit 9b2cafa

Browse files
FlamefireFlow86
authored andcommitted
GHA: Use $GITHUB_OUTPUT
1 parent 46267af commit 9b2cafa

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2424
- name: Extract tag name
2525
id: get_tag
26-
run: echo "::set-output name=tag::${GITHUB_REF#refs/tags/}"
26+
run: echo "tag=${GITHUB_REF#refs/tags/}" >> "$GITHUB_OUTPUT"
2727
- name: Set filenames
2828
id: filenames
2929
run: |
30-
echo "::set-output name=src::s25client_src_${{steps.get_tag.outputs.tag}}.tar.gz"
31-
echo "::set-output name=devTools::s25client_dev-tools_${{steps.get_tag.outputs.tag}}.tar.gz"
30+
echo src=s25client_src_${{steps.get_tag.outputs.tag}}.tar.gz" >> "$GITHUB_OUTPUT"
31+
echo "devTools=s25client_dev-tools_${{steps.get_tag.outputs.tag}}.tar.gz" >> "$GITHUB_OUTPUT"
3232
- name: Create source distribution
3333
run: |
3434
set -x

0 commit comments

Comments
 (0)