Skip to content

Generate tag

Generate tag #1

Workflow file for this run

name: Generate tag
on:
schedule:
- cron: "0 0 15 * *"
workflow_dispatch:
jobs:
release:
name: Release tag
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
- name: Create Tag
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git tag -a "r${{ github.run_number }}" -m "Monthly release r${{ github.run_number }}"
git push origin "r${{ github.run_number }}"