-
Notifications
You must be signed in to change notification settings - Fork 10
41 lines (39 loc) · 992 Bytes
/
publish-to-pypi.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Publish to PyPi
on:
release:
types: [published]
jobs:
test:
uses: dreoilin/pygmid/.github/workflows/run-tests.yml@main
build:
name: Build and upload python distributions
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.x"
cache: pip
- run: pip install build --user
- run: python3 -m build --sdist --wheel --outdir dist/
- name: Upload distribution
uses: actions/upload-artifact@v3
with:
name: pygmid-dist
path: dist/
publish-pypi:
name: Publish package distribution to PyPI
needs: build
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/pygmid
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v3
with:
name: pygmid-dist
path: dist/
- uses: pypa/gh-action-pypi-publish@release/v1