Skip to content

Workaround empy version issue (#31) #12

Workaround empy version issue (#31)

Workaround empy version issue (#31) #12

Workflow file for this run

name: version-tag
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
version-tag:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: tag
run: |
git remote set-url origin https://${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git
git tag $(basename ${TAG%.*.*})
git tag $(basename ${TAG%.*})
git push origin -f --tags
env:
TAG: ${{ github.ref }}