Skip to content

Added in checkout on the build step #7

Added in checkout on the build step

Added in checkout on the build step #7

Workflow file for this run

name: Auto Tag
on:
push:
branches:
- master
- '**'
permissions:
contents: write
jobs:
tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Needed to access all tags
- name: Create tag using commit message
id: tagger
uses: mathieudutour/[email protected]
with:
tag_prefix: 'v'
default_bump: 'patch'
default_prerelease_bump: 'prerelease'
dry_run: false # Set to false for actual tagging in production
github_token: ${{ secrets.GITHUB_TOKEN }}