Skip to content

Update dependency simple-git to v3.20.0 (#80) #12

Update dependency simple-git to v3.20.0 (#80)

Update dependency simple-git to v3.20.0 (#80) #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
permissions:
contents: write
steps:
- 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 }}