Skip to content

Bump the dependencies group with 2 updates #49

Bump the dependencies group with 2 updates

Bump the dependencies group with 2 updates #49

Workflow file for this run

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@v4
- name: Fetch full git history
run: git fetch --prune --unshallow
- name: Set up Conda env
uses: mamba-org/setup-micromamba@8752438cc2755ab7d0de2a8d70b694f5586baae8
with:
environment-file: environment.yml
cache-environment: true
- shell: bash -el {0}
run:
python -m build
- uses: pypa/gh-action-pypi-publish@v1.8.11
if: github.event_name == 'release'
with:
user: __token__
password: ${{ secrets.PYPI_RELEASE_TOKEN }}