Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
- name: Push tag for each updated package
env:
GH_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
run: |
git config --global user.name "SDK Releaser Bot"
git config --global user.email "[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion core/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "stackit-core"
version = "v0.0.1a4"
version = "v0.0.1a5"
authors = ["STACKIT Developer Tools <[email protected]>"]
description = "Core functionality for the STACKIT SDK for Python"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion scripts/cd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ for file in $(git diff --name-only HEAD~1..HEAD | grep pyproject.toml); do
echo "Tag '$expected_tag' does not exist. Creating new tag to trigger release."
git tag -a $expected_tag -m "Release $version"
git push origin tag $expected_tag
poetry publish --build --username="__token__" --no-interaction --password="${{ secrets.PYPI_TOKEN }}"
poetry publish --build --username="__token__" --no-interaction --password="$PYPI_TOKEN"
fi
done
Loading