Skip to content

Commit d904277

Browse files
committed
Add end of publish workflow
1 parent 95e2cf5 commit d904277

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/publish.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,21 @@ on:
88
jobs:
99
call-build:
1010
uses: ./.github/workflows/package.yml
11+
publish-to-pypi:
12+
runs-on: ubuntu-latest
13+
defaults:
14+
run:
15+
shell: bash
16+
steps:
17+
- uses: actions/checkout@v2
18+
- name: Setup python
19+
uses: actions/setup-python@v2
20+
with:
21+
python-version: 3.8
22+
architecture: x64
23+
- name: Install poetry
24+
uses: snok/install-poetry@v1
25+
- name: Publish to Pypi
26+
run: |
27+
poetry publish
28+

0 commit comments

Comments
 (0)