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 de39f87 commit 6b47bafCopy full SHA for 6b47baf
.github/workflows/release.yml
@@ -0,0 +1,21 @@
1
+name: release-to-pypi
2
+
3
+on:
4
+ release:
5
+ types: [published]
6
7
+jobs:
8
+ publish-iwf-python-sdk:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v3
12
+ - name: Set up Python
13
+ uses: actions/setup-python@v3
14
+ with:
15
+ python-version: '3.9'
16
+ - name: Install Poetry
17
+ uses: snok/install-poetry@v1
18
+ - name: set tokens
19
+ run: poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }}
20
+ - name: build and publish
21
+ run: poetry publish --build
pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "iwf-python-sdk"
-version = "0.1.2"
+version = "0.1.3"
description = ""
authors = ["Indeed Engineering"]
readme = "README.md"
0 commit comments