Skip to content

Sphinx style tweaks (#707) #519

Sphinx style tweaks (#707)

Sphinx style tweaks (#707) #519

Workflow file for this run

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 }}