mirror of
https://github.com/ruby/setup-ruby.git
synced 2026-09-13 22:44:20 +02:00
Add workflow to automatically create a release
This commit is contained in:
@@ -1,17 +1,17 @@
|
||||
name: Update the v1 branch when a release is published
|
||||
name: Create a Release
|
||||
on:
|
||||
release:
|
||||
types: [published]
|
||||
workflow_dispatch:
|
||||
permissions:
|
||||
contents: read
|
||||
contents: write # for creating release
|
||||
|
||||
jobs:
|
||||
release:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write # for git push
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- run: git push origin HEAD:v1
|
||||
- uses: ./
|
||||
with:
|
||||
ruby-version: '3.3'
|
||||
- run: ruby release.rb
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
name: Update the v1 branch when a release is published
|
||||
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
|
||||
Reference in New Issue
Block a user