Skip to content

Don't delete the old tag in the release process (#12) #3

Don't delete the old tag in the release process (#12)

Don't delete the old tag in the release process (#12) #3

Workflow file for this run

name: Release
on:
push:
branches: [main]
env:
VERSION: v1
jobs:
tag:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- run: git tag $VERSION
- run: git push origin :$VERSION
- run: git push --tag