Skip to content

Release 1.3.0

Release 1.3.0 #16

Workflow file for this run

name: Release
on:
release:
branches: main
types: [published]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
re-tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: main
- name: update tag
run: |
git config user.name 'github-actions'
git config user.email '41898282+github-actions[bot]@users.noreply.github.com'
git tag --delete v1 || true
git push --delete origin v1 || true
git tag -a v1 -m '🔖 Re-tag v1'
git push origin v1