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 d838c8d commit c039358Copy full SHA for c039358
core/pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "stackit-core"
3
-version = "v0.0.1a5"
+version = "v0.0.1a6"
4
authors = ["STACKIT Developer Tools <[email protected]>"]
5
description = "Core functionality for the STACKIT SDK for Python"
6
readme = "README.md"
scripts/cd.sh
@@ -14,6 +14,8 @@ for file in $(git diff --name-only HEAD~1..HEAD | grep pyproject.toml); do
14
echo "Tag '$expected_tag' does not exist. Creating new tag to trigger release."
15
git tag -a $expected_tag -m "Release $version"
16
git push origin tag $expected_tag
17
+ cd $dirpath
18
poetry publish --build --username="__token__" --no-interaction --password="$PYPI_TOKEN"
19
+ cd $GITHUB_WORKSPACE
20
fi
21
done
0 commit comments