-
Notifications
You must be signed in to change notification settings - Fork 4
79 lines (69 loc) · 2.49 KB
/
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
69
70
71
72
73
74
75
76
77
78
79
name: release
on:
workflow_dispatch:
push:
branches:
- main
jobs:
# job to determine appropriate version number, update changelog, and create a release commit
release:
runs-on: ubuntu-latest
concurrency: release
permissions:
id-token: write
contents: write
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{secrets.PAT}}
- name: Python Semantic Release
id: release
uses: python-semantic-release/python-semantic-release@master
# Always build & lint package.
- name: Build & verify package
id: build-package
uses: hynek/build-and-inspect-python-package@v1
# Upload to Test PyPI on every commit on main.
- name: Publish in-dev package to test.pypi.org
id: release-test-pypi
needs: [release, build-package]
environment:
name: testpypi
url: https://pypi.org/p/invert4geom
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
if: github.ref == 'refs/heads/main'
# Download the built package from the build-package job.
- name: Download packages built by build-and-inspect-python-package
uses: actions/download-artifact@v3
with:
name: Packages
path: dist
# Upload to Test PyPI
- name: Upload package to Test PyPI
uses: pypa/gh-action-pypi-publish@release/v1
environment:
name: testpypi
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
with:
repository-url: https://test.pypi.org/legacy/
# Upload to real PyPI on GitHub Releases.
- name: Publish released package to pypi.org
id: release-pypi
needs: [release, build-package]
environment:
name: pypi
url: https://pypi.org/p/invert4geom
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
if: github.ref == 'refs/heads/main'
uses: pypa/gh-action-pypi-publish@release/v1
# Upload to GitHub Releases.
- name: Publish package distributions to GitHub Releases
id: release-github
uses: python-semantic-release/upload-to-gh-release@main
# if: ${{ always() && contains(join(needs.*.result, ','), 'success') }}
if: steps.release.outputs.released == 'true'
needs: [release, build-package]