Skip to content

Commit

Permalink
Added bootstrap job for release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
hsbt committed Aug 8, 2024
1 parent 65cca99 commit e123340
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -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 }}"}'

0 comments on commit e123340

Please sign in to comment.