2021-10-17 13:06:35 -07:00
|
|
|
name: Publish Master Push Event
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
publish_event:
|
|
|
|
runs-on: ubuntu-latest
|
2022-07-19 20:42:48 -07:00
|
|
|
name: Publish master push
|
2021-10-17 13:06:35 -07:00
|
|
|
steps:
|
|
|
|
- run: |
|
|
|
|
curl -i \
|
|
|
|
-X POST \
|
|
|
|
-H "Accept: application/vnd.github.v3+json" \
|
|
|
|
-H "Authorization: token ${{ secrets.PUBLISH_PUSH_TOKEN }}" \
|
|
|
|
https://api.github.com/repos/awalsh128/cache-apt-pkgs-action-ci/dispatches \
|
2022-07-19 20:42:48 -07:00
|
|
|
-d '{"event_type":"master_push"}'
|