Skip to content

Auto tag

Auto tag #22

Workflow file for this run

name: Auto tag
# Automatically push a tag every 1st and 15th of the month
on:
schedule:
- cron: '0 13 15 * *'
jobs:
auto-tag:
name: Automatic Tag
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: '0'
- name: Bump version and push tag
uses: anothrNick/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEFAULT_BUMP: patch
WITH_V: true