Skip to content

Commit

Permalink
CI: GitHub Action for versioning
Browse files Browse the repository at this point in the history
uses python-semantic-release, on merged pull-request into any branch (although pyproject.toml specifies only main is used for versioning).
Can also be triggered manually.
  • Loading branch information
JorisVincent committed Feb 29, 2024
1 parent 57404a8 commit 1e00542
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Bump version (if necessary)

on:
pull_request_target:
types:
- closed
workflow_dispatch:

jobs:
bump-version:
if: (github.event.pull_request.merged == true) || (github.event_name == 'workflow_dispatch')
runs-on: ubuntu-latest
concurrency: bump-version
permissions:
id-token: write
contents: write

steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0 # checkout full commit history
token: ${{ secrets.GHA_Token }}

- name: Python Semantic Release
id: versioning
uses: python-semantic-release/python-semantic-release@master
with:
github_token: ${{ secrets.GHA_TOKEN }}

- name: Publish package distributions to GitHub Releases
uses: python-semantic-release/upload-to-gh-release@main
if: steps.versioning.outputs.released == 'true'
with:
github_token: ${{ secrets.GHA_TOKEN }}

0 comments on commit 1e00542

Please sign in to comment.