We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27e7ace commit e0b0056Copy full SHA for e0b0056
.github/workflows/release.yml
@@ -15,7 +15,7 @@ jobs:
15
16
- name: Get Tag
17
id: tag
18
- run: echo ::set-output name=tag::${GITHUB_REF#refs/tags/}
+ run: echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
19
20
- name: Set Up Python 3.11
21
uses: actions/setup-python@v4
@@ -35,7 +35,7 @@ jobs:
35
id: check-version
36
run: |
37
[[ "$(python -c "import openskill; print(openskill.__version__)")" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] \
38
- || echo ::set-output name=prerelease::true
+ || echo "prerelease=true" >> $GITHUB_OUTPUT
39
- name: Create Release
40
uses: ncipollo/release-action@v1
41
with:
0 commit comments