Release by @nextmv-bot from v0.1.9.dev1 #8
Workflow file for this run
This file contains hidden or 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: release | |
| run-name: Release by @${{ github.actor }} from ${{ github.ref_name }} | |
| on: [push] | |
| jobs: | |
| release: | |
| if: ${{ github.ref_type == 'branch' }} | |
| uses: nextmv-io/release/.github/workflows/release.yml@develop | |
| with: | |
| BRANCH: ${{ github.ref_name }} | |
| REPOSITORY: nextplot | |
| LANGUAGE: python | |
| PACKAGE_NAME: nextplot | |
| PACKAGE_LOCATION: . | |
| VERSION_FILE: __about__.py | |
| secrets: inherit | |
| publish: # Unfortunately, PyPI publishing does not support reusable workflows, so we must publish here. | |
| needs: release | |
| if: ${{ needs.release.outputs.RELEASE_NEEDED == 'true' }} | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: pypi | |
| url: https://pypi.org/p/nextplot | |
| permissions: | |
| id-token: write # This is required for trusted publishing to PyPI | |
| steps: | |
| - name: git clone ${{ github.ref_name }} | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.ref_name }} | |
| - name: set up Python | |
| uses: actions/setup-python@v5 | |
| - name: install dependencies | |
| run: | | |
| pip install --upgrade pip | |
| pip install build hatch | |
| - name: python - build binary wheel and source tarball | |
| run: python -m build | |
| - name: python - publish package distributions to PyPI | |
| uses: pypa/gh-action-pypi-publish@release/v1 | |
| with: | |
| packages-dir: ./dist | |
| notify: | |
| needs: [release, publish] | |
| if: ${{ needs.release.outputs.RELEASE_NEEDED == 'true' && needs.release.outputs.SHOULD_NOTIFY_SLACK == 'true' }} | |
| uses: nextmv-io/release/.github/workflows/notify-slack.yml@develop | |
| with: | |
| PACKAGE_NAME: nextplot | |
| VERSION: ${{ needs.release.outputs.VERSION }} | |
| REPOSITORY: nextplot | |
| secrets: inherit |