File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1919 - name : Push tag for each updated package
2020 env :
2121 GH_TOKEN : ${{ secrets.RENOVATE_TOKEN }}
22+ PYPI_TOKEN : ${{ secrets.PYPI_TOKEN }}
2223 run : |
2324 git config --global user.name "SDK Releaser Bot"
2425 git config --global user.email "[email protected] "
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " stackit-core"
3- version = " v0.0.1a4 "
3+ version = " v0.0.1a5 "
44authors = [
" STACKIT Developer Tools <[email protected] >" ]
55description = " Core functionality for the STACKIT SDK for Python"
66readme = " README.md"
Original file line number Diff line number Diff line change @@ -14,6 +14,6 @@ for file in $(git diff --name-only HEAD~1..HEAD | grep pyproject.toml); do
1414 echo " Tag '$expected_tag ' does not exist. Creating new tag to trigger release."
1515 git tag -a $expected_tag -m " Release $version "
1616 git push origin tag $expected_tag
17- poetry publish --build --username=" __token__" --no-interaction --password=" ${{ secrets. PYPI_TOKEN } } "
17+ poetry publish --build --username=" __token__" --no-interaction --password=" $PYPI_TOKEN "
1818 fi
1919done
You can’t perform that action at this time.
0 commit comments