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 f87294d commit 5712179Copy full SHA for 5712179
.github/workflows/nextrelease.yml
@@ -15,10 +15,12 @@ jobs:
15
with:
16
fetch-depth: 0 # all branches and tags
17
- uses: dropseed/nextrelease@v1
18
+ env:
19
+ POETRY_PYPI_TOKEN_PYPI: ${{ secrets.DROPSEED_PYPI_TOKEN }}
20
21
prepare_cmd: |
22
sed -i -e "s/version = \"[^\"]*\"/version = \"$VERSION\"/g" pyproject.toml
23
publish_cmd: |
- poetry publish --build
24
+ pip3 install -U pip poetry && poetry publish --build --no-interaction
25
git tag -a v$VERSION_MAJOR -m v$VERSION_MAJOR -f && git push origin v$VERSION_MAJOR -f
26
github_token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments