-
Notifications
You must be signed in to change notification settings - Fork 30
46 lines (38 loc) · 1.07 KB
/
deploy.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
name: Deploy
on: [push]
jobs:
publish:
if: ${{ false }} # Disable action, manylinux only provideds GCC 10 which is insufficient for ARTS
#if: github.repository == 'atmtools/arts'
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
name: [
linux-python38,
linux-python39,
linux-python310
]
include:
- name: linux-python38
os: ubuntu-20.04
python_version: cp38-cp38
- name: linux-python39
os: ubuntu-20.04
python_version: cp39-cp39
- name: linux-python310
os: ubuntu-20.04
python_version: cp310-cp310
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ github.ref }}
- name: PyPI release (Linux)
if: runner.os == 'Linux'
continue-on-error: true
uses: ./actions/pypi
with:
pypi_access: ${{ secrets.pypi_access }}
python_version: ${{ matrix.python_version }}