Skip to content

Commit e0b0056

Browse files
committed
Remove deprecated set-output from release workflow
1 parent 27e7ace commit e0b0056

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

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

1616
- name: Get Tag
1717
id: tag
18-
run: echo ::set-output name=tag::${GITHUB_REF#refs/tags/}
18+
run: echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
1919

2020
- name: Set Up Python 3.11
2121
uses: actions/setup-python@v4
@@ -35,7 +35,7 @@ jobs:
3535
id: check-version
3636
run: |
3737
[[ "$(python -c "import openskill; print(openskill.__version__)")" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] \
38-
|| echo ::set-output name=prerelease::true
38+
|| echo "prerelease=true" >> $GITHUB_OUTPUT
3939
- name: Create Release
4040
uses: ncipollo/release-action@v1
4141
with:

0 commit comments

Comments
 (0)