Skip to content

Commit ec6c9d3

Browse files
committed
ci: release: Use output parameter file
This commit updates the workflow to use the output parameter file (`GITHUB_OUTPUT`) instead of the stdout-based output parameter setting, which is now deprecated by GitHub and will be removed in the near future. Signed-off-by: Stephanos Ioannidis <[email protected]>
1 parent c5e88db commit ec6c9d3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ jobs:
1515

1616
- name: Get the version
1717
id: get_version
18-
run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/}
18+
run: |
19+
echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
1920
2021
- name: REUSE Compliance Check
2122
uses: fsfe/reuse-action@v1

0 commit comments

Comments
 (0)