Skip to content

Add pypi deps and fix when workflows are run #2

Add pypi deps and fix when workflows are run

Add pypi deps and fix when workflows are run #2

Workflow file for this run

name: PyPI
on:
pull_request:
push:
branches: [main]
jobs:
test:
name: Test
runs-on: ubuntu-latest
container:
image: ghcr.io/scientificcomputing/fenics-gmsh:2023-03-01a
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: python3 -m pip install ".[pypi]"
- name: Install python3-venv
run: apt update && apt install python3-venv -y
- name: Build a binary wheel and a source tarball
run: >-
python3 -m
build
--sdist
--wheel
--outdir dist/
.
- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags') # Only push to pypi when there is a new tag
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}