Skip to content
This repository was archived by the owner on Aug 27, 2025. It is now read-only.

Commit a5c8774

Browse files
build poetry on CI
1 parent 4c87a62 commit a5c8774

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
tags:
55
- v*
66
jobs:
7-
deploy:
7+
deploy-doc:
88
runs-on: ubuntu-latest
99
steps:
1010
#----------------------------------------------
@@ -44,3 +44,12 @@ jobs:
4444
run: poetry run pytest
4545
- name: Deploy doc
4646
run: poetry run mkdocs gh-deploy --force
47+
build:
48+
needs: [deploy-doc]
49+
runs-on: ubuntu-latest
50+
steps:
51+
- uses: actions/checkout@v3
52+
- name: Build and publish to pypi
53+
uses: JRubics/poetry-publish@v1.17
54+
with:
55+
pypi_token: ${{ secrets.PYPI_TOKEN }}

0 commit comments

Comments
 (0)