Merge pull request #42 from HaoZeke/patch-1 #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |