Skip to content

chore: automate tagging and dual brew formula updates #1

chore: automate tagging and dual brew formula updates

chore: automate tagging and dual brew formula updates #1

Workflow file for this run

name: Auto Tag
on:
push:
branches:
- master
- main
permissions:
contents: write
jobs:
tag:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[skip tag]')"
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Bump version and push tag
id: tag_action
uses: anothrNick/github-tag-action@1.71.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
WITH_V: true
DEFAULT_BUMP: patch
PRERELEASE: false