-
Notifications
You must be signed in to change notification settings - Fork 4
68 lines (61 loc) · 1.94 KB
/
pypi_release.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: pypi_release
# define when this workflow is triggered
on:
workflow_dispatch:
release:
types: [published]
# cancel any currently running workflows in this same PR
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
# Always build & lint package. Need to re-checkout after semantic-release in case it
# made a commit
build-package:
name: Build & verify package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: hynek/build-and-inspect-python-package@v2
# Upload to Test PyPI.
release-test-pypi:
name: Publish in-dev package to test.pypi.org
runs-on: ubuntu-latest
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
environment:
name: testpypi
url: https://pypi.org/p/invert4geom
needs: [build-package]
steps:
# Download the build package files
- name: Download packages built by build-and-inspect-python-package
with:
name: Packages
path: dist
uses: actions/download-artifact@v4
- name: Upload package to Test PyPI
with:
repository-url: https://test.pypi.org/legacy/
uses: pypa/gh-action-pypi-publish@release/v1
# Upload to real PyPI on GitHub Releases.
release-pypi:
name: Publish released package to pypi.org
runs-on: ubuntu-latest
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
environment:
name: pypi
url: https://pypi.org/p/invert4geom
needs: [build-package]
steps:
# Download the build package files
- name: Download packages built by build-and-inspect-python-package
with:
name: Packages
path: dist
uses: actions/download-artifact@v4
- name: Upload package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1