Skip to content

Tag Master branch

Tag Master branch #20

Workflow file for this run

name: Tag Master branch
on:
workflow_run:
workflows: Run Tests
branches: master
types: completed
jobs:
tag:
runs-on: ubuntu-22.04
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
- name: Bump version and push tag
uses: anothrNick/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.PAT }}
WITH_V: true
VERBOSE: true
DEFAULT_BUMP: patch