release #6
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: release | |
on: | |
workflow_dispatch: # Allows manual triggering of the workflow | |
jobs: | |
cd: | |
permissions: | |
id-token: write | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Check-out repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Use Python Semantic Release to prepare release | |
id: release | |
uses: python-semantic-release/[email protected] | |
with: | |
github_token: ${{ secrets.QUANDA_ADMIN }} | |
changelog: true | |
tag: true | |
commit: false | |
- name: Push changes to a new branch and create a PR | |
run: | | |
# Create a new branch from main | |
git checkout -b version-bump-${{ steps.release.outputs.version }} | |
# Add the changes made by semantic-release (version update and changelog) | |
git add pyproject.toml CHANGELOG.md | |
# Commit the changes (version bump and changelog update) | |
git commit -m "chore: bump version to ${{ steps.release.outputs.version }} and update changelog" | |
# Push changes to the new branch | |
git push origin version-bump-${{ steps.release.outputs.version }} | |
# Create a pull request using GitHub CLI (gh) | |
gh pr create --base main --head version-bump-${{ steps.release.outputs.version }} --title "chore: Version bump to ${{ steps.release.outputs.version }}" --body "Automated version bump" | |
env: | |
GITHUB_TOKEN: ${{ secrets.QUANDA_ADMIN }} | |