mirror of
https://github.com/ruby/setup-ruby.git
synced 2026-09-13 22:44:20 +02:00
16 lines
312 B
YAML
16 lines
312 B
YAML
name: Update the v1 branch when a release is published manually
|
|
on:
|
|
release:
|
|
types: [published]
|
|
permissions:
|
|
contents: write # for git push
|
|
|
|
jobs:
|
|
update_branch:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- run: git push origin HEAD:v1
|