Skip to content

chore: github action #92

chore: github action

chore: github action #92

Workflow file for this run

name: Bump version
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
- name: Bump version and push tag
uses: anothrNick/github-tag-action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
WITH_V: true
MAJOR_STRING_TOKEN: "feat"
MINOR_STRING_TOKEN: "fix"
PATCH_STRING_TOKEN: "refactor"
NONE_STRING_TOKEN: "chore"