-
Notifications
You must be signed in to change notification settings - Fork 1
95 lines (78 loc) · 2.5 KB
/
Copy pathmain.yml
File metadata and controls
95 lines (78 loc) · 2.5 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# vim: et
# NOTE: Caching is disabled on all pushes to PyPi.
# See https://docs.zizmor.sh/audits/#cache-poisoning
on:
push:
permissions:
contents: read
jobs:
common:
uses: ./.github/workflows/common.yml
build-for-publish:
name: Build package for publishing
if: github.event_name == 'push'
needs:
- common
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
with:
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97
with:
python-version: 3.11
- name: Prepare pip and install build
run: |
python -m pip install --upgrade pip
python -m pip install build
- name: Make the version number unique (on non-tag pushes)
if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
run: |
python update-version-for-test-push.py
- name: Build source and wheel distributions
run: |
python -m build .
- id: upload-dist
name: Save dist as artifact
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
with:
name: python-dist
path: dist/
if-no-files-found: error
retention-days: 1
overwrite: true
publish-test:
name: Publish pushes to PyPi's test instance
if: github.event_name == 'push'
needs: build-for-publish
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Download dist from artifact
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c
with:
name: python-dist
path: dist/
- name: Publish pushes to PyPI test
uses: pypa/gh-action-pypi-publish@dc37677b2e1c63e2034f94d8a5b11f265b73ba33
with:
repository-url: https://test.pypi.org/legacy/
publish-prod:
name: Publish tags to PyPi production
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
needs: build-for-publish
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- name: Download dist from artifact
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c
with:
name: python-dist
path: dist/
- name: Publish tags to PyPI production
uses: pypa/gh-action-pypi-publish@dc37677b2e1c63e2034f94d8a5b11f265b73ba33