forked from happycube/ld-decode
-
Notifications
You must be signed in to change notification settings - Fork 54
82 lines (65 loc) · 1.8 KB
/
push_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
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
name: "Push to PyPI"
on:
workflow_dispatch:
jobs:
build-wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
env:
CIBW_SKIP: "cp38-* cp39-* pp*"
CIBW_ARCHS_LINUX: "x86_64"
CIBW_ARCHS_WINDOWS: "AMD64"
CIBW_ARCHS_MACOS: "x86_64 arm64 universal2"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- uses: actions/setup-python@v5
- name: Build wheels
uses: pypa/[email protected]
- uses: actions/upload-artifact@v4
with:
name: vhs-decode-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl
if-no-files-found: error
create-sdist:
name: Create source distribution
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- name: Create the sdist
run: |
pipx run build --sdist
- name: Store the sdist
uses: actions/upload-artifact@v4
with:
name: vhs-decode-sdist
path: dist/*.tar.gz
if-no-files-found: error
publish-to-pypi:
name: Publish to PyPI
runs-on: ubuntu-20.04
needs:
- build-wheels
- create-sdist
environment:
name: pypi
url: https://pypi.org/p/vhs-decode
permissions:
id-token: write # IMPORTANT: mandatory for trusted publishing
steps:
- name: Download all the artifacts
uses: actions/download-artifact@v4
with:
pattern: vhs-decode-*
path: dist
merge-multiple: true
- name: Publish packages to PyPI
uses: pypa/gh-action-pypi-publish@release/v1