ci: add workflow_dispatch trigger to release.yml #216
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: Publish and release CumulusCI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - dev | |
| workflow_dispatch: | |
| concurrency: publishing | |
| jobs: | |
| publish-to-pypi: | |
| name: Publish new release to PyPI | |
| runs-on: SFDO-Tooling-Ubuntu | |
| if: >- | |
| (github.event_name == 'workflow_dispatch') | |
| || (github.ref_name == 'main' && contains(github.event.head_commit.modified, 'cumulusci/__about__.py')) | |
| || (github.ref_name == 'dev' && github.actor != 'github-actions[bot]') | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Set up Python 3.13 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.13 | |
| cache: pip | |
| - name: Install build tools | |
| run: python -m pip install hatch tomli tomli-w | |
| - name: Bump dev version | |
| if: github.ref_name == 'dev' | |
| run: hatch version dev | |
| - name: Commit and push dev version bump | |
| if: github.ref_name == 'dev' | |
| run: | | |
| git config user.name "github-actions[bot]" | |
| git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
| git add cumulusci/__about__.py | |
| git commit -m "Bump dev version [skip ci]" | |
| git push | |
| - name: Build source tarball and binary wheel | |
| run: hatch build -c | |
| - name: Upload to PyPI | |
| run: hatch publish | |
| env: | |
| HATCH_INDEX_USER: "__token__" | |
| HATCH_INDEX_AUTH: ${{ secrets.PYPI_TOKEN }} | |
| - name: Create release | |
| if: github.ref_name == 'main' | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| VERSION="$(hatch version)" | |
| awk '/<!-- latest-start -->/,/<!-- latest-stop -->/' docs/history.md > changelog.md | |
| gh release create "v$VERSION" \ | |
| dist/*.whl \ | |
| dist/*.tar.gz \ | |
| --notes-file changelog.md \ | |
| --title $VERSION |