Skip to content

Merge pull request #42 from HaoZeke/patch-1 #13

Merge pull request #42 from HaoZeke/patch-1

Merge pull request #42 from HaoZeke/patch-1 #13

Workflow file for this run

# This iworkflow moves the v1 tag along with HEAD
name: Move v1
on:
push:
branches: [ main ]
jobs:
move:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Move tag
run: |
git config user.name "Github Actions"
git config user.email "[email protected]"
git push --delete origin v1
git tag -fa v1 -m"Rolling release"
git push origin main --tags