Skip to content

Bump version

Bump version #6

Workflow file for this run

name: Bump version
on:
workflow_dispatch:
workflow_run:
workflows: ["Run tests"]
types:
- completed
branches:
- main
- master
jobs:
version:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Bump version and push tag
id: tag_version
uses: mathieudutour/github-tag-action@v6.1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}