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 4b9584e commit 638c7f7Copy full SHA for 638c7f7
.github/workflows/release.yml
@@ -0,0 +1,24 @@
1
+name: Release python package
2
+
3
+on:
4
+ push:
5
+ tags:
6
+ - "*"
7
8
+jobs:
9
+ deploy:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - name: Set up Python
14
+ uses: actions/setup-python@v2
15
+ with:
16
+ python-version: "3.9"
17
+ - name: Install deps
18
+ uses: knowsuchagency/poetry-install@v1
19
+ env:
20
+ POETRY_VIRTUALENVS_CREATE: false
21
+ - name: Release package
22
23
+ POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
24
+ run: poetry publish --build
0 commit comments