Merge pull request #65 from betatim/dependabot/github_actions/depende… #83
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@v4 | |
- name: Fetch full git history | |
run: git fetch --prune --unshallow | |
- name: Set up Conda env | |
uses: mamba-org/setup-micromamba@f8b8a1e23a26f60a44c853292711bacfd3eac822 | |
with: | |
environment-file: environment.yml | |
cache-environment: true | |
- shell: bash -el {0} | |
run: | |
python -m build | |
- uses: pypa/[email protected] | |
if: github.event_name == 'release' | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_RELEASE_TOKEN }} |