-
Notifications
You must be signed in to change notification settings - Fork 2
53 lines (46 loc) · 1.33 KB
/
deploy.yaml
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
name: Build and upload to PyPi
on:
push:
tags:
- "*"
release:
types:
- published
jobs:
test_pypi_push:
environment:
name: TestPyPi
url: https://test.pypi.org/p/numkit
permissions:
id-token: write
if: |
github.repository == 'Becksteinlab/numkit' &&
(github.event_name == 'push' && startsWith(github.ref, 'refs/tags/'))
name: "TestPyPi: Build, upload, and test pure Python wheels"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: testpypi_deploy
uses: MDAnalysis/pypi-deployment@main
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
with:
test_submission: true
package_name: 'numkit'
pypi_push:
environment:
name: PyPi
url: https://pypi.org/p/numkit
permissions:
id-token: write
if: |
github.repository == 'Becksteinlab/numkit' &&
(github.event_name == 'release' && github.event.action == 'published')
name: "PyPi: Build, upload, and test pure Python wheels"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: pypi_deploy
uses: MDAnalysis/pypi-deployment@main
if: github.event_name == 'release' && github.event.action == 'published'
with:
package_name: 'numkit'