Skip to content

Commit bf9072d

Browse files
authored
Ajout d'une Github action pour publier sur PyPi
1 parent 63c10e5 commit bf9072d

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/main.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Python packaging 🐍
2+
on:
3+
push:
4+
tags:
5+
- 'v*.*.*'
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- name: Build and Publish 📦 to PyPI
12+
uses: JRubics/poetry-publish@v1
13+
with:
14+
pypi_token: ${{ secrets.PYPI_API_TOKEN }}

0 commit comments

Comments
 (0)