Skip to content
This repository was archived by the owner on Sep 16, 2025. It is now read-only.

Commit 594d0b2

Browse files
authored
Avoid warning in SET OUTPUT in workflow
1 parent 5f1ec6e commit 594d0b2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,10 @@ jobs:
1414
- name: Determine Version
1515
id: release-version
1616
run: |
17-
echo "::set-output name=full::${{ github.ref_name }}"
17+
echo "full=${{ github.ref_name }}" >> $GITHUB_OUTPUT
1818
SIMPLE=$(echo ${{ github.ref_name }} | sed -e s/^v//)
19-
echo "::set-output name=simple::$SIMPLE"
19+
echo "simple=$SIMPLE" >> $GITHUB_OUTPUT
20+
2021
2122
- name: Set up Python
2223
uses: actions/setup-python@v4

0 commit comments

Comments
 (0)