Skip to content

temporarily hard-code R4.3.3 for #45 (#47) #14

temporarily hard-code R4.3.3 for #45 (#47)

temporarily hard-code R4.3.3 for #45 (#47) #14

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