We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a866bf commit f956b42Copy full SHA for f956b42
1 file changed
.github/workflows/release.yml
@@ -35,15 +35,15 @@ jobs:
35
id: check-version
36
run: |
37
[[ "$(poetry version --short)" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] \
38
- || echo ::set-output name=prerelease::true
+ || echo "::set-output name=prerelease::true"
39
40
- name: Create Release
41
uses: ncipollo/release-action@v1
42
with:
43
artifacts: "dist/*"
44
token: ${{ secrets.GITHUB_TOKEN }}
45
draft: false
46
- prerelease: steps.check-version.outputs.prerelease == 'true'
+ prerelease: ${{ steps.check-version.outputs.prerelease == 'true' }}
47
48
- name: Publish to PyPI
49
env:
0 commit comments