Skip to content

Merge pull request #51 from ropensci-review-tools/ci #18

Merge pull request #51 from ropensci-review-tools/ci

Merge pull request #51 from ropensci-review-tools/ci #18

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@v4
- name: Move tag
run: |
git config user.name "Github Actions"
git config user.email "github-actions@github.com"
git push --delete origin v1
git tag -fa v1 -m"Rolling release"
git push origin main --tags