-
Notifications
You must be signed in to change notification settings - Fork 4
37 lines (32 loc) · 974 Bytes
/
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
name: Build and upload to PyPi
on:
push:
tags:
- "*"
release:
types:
- published
jobs:
pypi_push:
environment: deploy
if: "github.repository == 'MDAnalysis/waterdynamics'"
name: Build, upload and test pure Python wheels
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: testpypi_deploy
uses: MDAnalysis/pypi-deployment@main
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
with:
token: ${{ secrets.TEST_PYPI_API_TOKEN }}
test_submission: true
tests: true
test_deps: 'pytest MDAnalysisTests'
package_name: 'waterdynamics'
- name: pypi_deploy
uses: MDAnalysis/pypi-deployment@main
if: github.event_name == 'release' && github.event.action == 'published'
with:
token: ${{ secrets.PYPI_API_TOKEN }}
package_name: 'waterdynamics'
tests: false