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 efc7ea3 commit 42ddf71Copy full SHA for 42ddf71
.github/workflows/publish.yaml
@@ -16,9 +16,12 @@ jobs:
16
- run: pipx install poetry
17
- uses: actions/setup-python@v5
18
with:
19
+ python-version: '3.x'
20
cache: poetry
21
- run: |
- poetry version -- ${GIT_REF_NAME#v}
22
+ poetry version ${GITHUB_REF_NAME#v}
23
poetry build
24
- uses: pypa/gh-action-pypi-publish@release/v1
25
- run: gh release upload $GIT_REF_NAME dist/*
26
+ env:
27
+ GH_TOKEN: ${{ github.token }}
0 commit comments