Move to pyproject.toml and setuptools_scm #21
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and upload to PyPI | |
on: | |
push: | |
pull_request: | |
release: | |
types: [published] | |
jobs: | |
build_artifacts: | |
name: Build artifacts | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Fetch full git history | |
run: git fetch --prune --unshallow | |
- name: Set up Conda env | |
uses: mamba-org/setup-micromamba@875557da4ee020f18df03b8910a42203fbf02da1 | |
with: | |
environment-file: environment.yml | |
cache-environment: true | |
- shell: bash -el {0} | |
run: | |
python -m build | |
- uses: pypa/gh-action-pypi-publish@v1.5.1 | |
if: github.event_name == 'release' | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_RELEASE_TOKEN }} |