Skip to content

use PAT to trigger build on tag push #9

use PAT to trigger build on tag push

use PAT to trigger build on tag push #9

Workflow file for this run

name: "Bump Version Tag"
on:
push:
branches:
- main
paths-ignore:
- .gitignore
- .devcontainer
- assets
- LICENSE
- README.md
workflow_dispatch:
jobs:
bump-tag:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- name: Bump version and push tag
uses: anothrNick/github-tag-action@1.67.0 # Don't use @master or @v1 unless you're happy to test the latest version
env:
GITHUB_TOKEN: ${{ secrets.PAT }}
WITH_V: true
DEFAULT_BUMP: patch