First version of a Golang version of command handling in general. #120
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Dev Push Event | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- dev | |
jobs: | |
publish_event: | |
runs-on: ubuntu-latest | |
name: Publish dev push | |
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 \ | |
-d '{"event_type":"dev_push"}' |