-
Notifications
You must be signed in to change notification settings - Fork 11
113 lines (92 loc) · 2.76 KB
/
publish.yml
File metadata and controls
113 lines (92 loc) · 2.76 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
name: Publishing
on:
release:
types: [published]
jobs:
test:
uses: ./.github/workflows/ci.yml
# If tests are successful, we build the wheel and push it to the release
build-wheel:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Build sdist
run: |
python -m pip install --upgrade build
python -m build
- uses: actions/upload-artifact@v7
with:
path: dist/muse*
- uses: softprops/action-gh-release@v3
with:
files: dist/muse*
# If building of the wheel is successful, then we try to publish it
# First, in TestPyPI
publish-TestPyPI:
needs: build-wheel
name: Publish MUSE to TestPyPI
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- name: Download sdist artifact
uses: actions/download-artifact@v8
with:
name: artifact
path: dist
- name: Display structure of downloaded files
run: ls -R dist
- name: Publish package distributions to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
skip-existing: true
# And if all goes well, in PyPI
publish-PyPI:
needs: publish-TestPyPI
name: Publish MUSE to PyPI
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- name: Download sdist artifact
uses: actions/download-artifact@v8
with:
name: artifact
path: dist
- name: Display structure of downloaded files
run: ls -R dist
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
# Finally, if all of these went well, we build the standalone executable
# And publish it to the release page, as well
build-standalone:
needs: publish-PyPI
name: Build standalone executables
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest]
python-version: ["3.9"]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pyinstaller
python -m pip install -e .[dev,gui]
- name: Build directory-based standalone
run: pyinstaller muse_dir.spec --distpath standalone
- uses: actions/upload-artifact@v7
with:
path: standalone/MUSE*
name: MUSE
- uses: softprops/action-gh-release@v3
with:
files: standalone/MUSE*