Skip to content

Tag

Tag #19

Workflow file for this run

name: Tag
on:
workflow_run:
workflows: ["CI"]
branches: [main]
types:
- completed
jobs:
tag:
runs-on: ubuntu-latest
permissions:
contents: write
timeout-minutes: 20
steps:
- uses: actions/checkout@v3
with:
fetch-depth: '0'
- name: Bump version and push tag
uses: anothrNick/github-tag-action@master
env:
DEFAULT_BUMP: patch
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPO_OWNER: refcell
WITH_V: true