mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
Added bootstrap job for release workflow
This commit is contained in:
parent
65cca99b30
commit
4d11a0960d
1 changed files with 18 additions and 0 deletions
18
.github/workflows/publish.yml
vendored
Normal file
18
.github/workflows/publish.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
name: Start release workflow
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
|
||||
jobs:
|
||||
notify:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Build release package
|
||||
run: |
|
||||
curl -L -X POST \
|
||||
-H "Authorization: Bearer ${{ secrets.MATZBOT_GITHUB_WORKFLOW_TOKEN }}" \
|
||||
-H "Accept: application/vnd.github+json" \
|
||||
-H "X-GitHub-Api-Version: 2022-11-28" \
|
||||
https://api.github.com/repos/ruby/actions/dispatches \
|
||||
-d '{"event_type": "${{ github.ref }}"}'
|
Loading…
Add table
Add a link
Reference in a new issue