Skip to content

Commit ddc4bbd

Browse files
committed
ci: publish final package
1 parent 5b19a6f commit ddc4bbd

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/publish.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Publish
2+
3+
on:
4+
release:
5+
types:
6+
- published
7+
8+
env:
9+
python_version: '3.x'
10+
11+
jobs:
12+
publish:
13+
runs-on: ubuntu-latest
14+
timeout-minutes: 10
15+
steps:
16+
- uses: actions/checkout@v4
17+
- uses: actions/setup-python@v5
18+
with:
19+
python-version: ${{ env.python_version }}
20+
- uses: ./.github/actions/python-build-publish
21+
with:
22+
repository: pypi
23+
token: ${{ secrets.pypi_token }}

0 commit comments

Comments
 (0)