Skip to content

rm hard-coded R4.3.3, revert to latest 4.4 to close #45 #15

rm hard-coded R4.3.3, revert to latest 4.4 to close #45

rm hard-coded R4.3.3, revert to latest 4.4 to close #45 #15

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