add trigger deb build action
This commit is contained in:
parent
7f6259057b
commit
d9a56e02ce
|
@ -8,10 +8,15 @@ on: [push]
|
||||||
|
|
||||||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
||||||
jobs:
|
jobs:
|
||||||
php-cs-fixer:
|
trigger_deb_build:
|
||||||
name: Trigger .deb build
|
name: Trigger .deb build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Make curl request
|
- name: Make curl request
|
||||||
run: curl -X POST "${{ secrets.DEB_REPOSITORY }}/dispatches" -u "${{ secrets.DEB_ACCESS_TOKEN }}" -H "Accept: application/vnd.github.everest-preview+json" -H "Content-Type: application/json" --data '{"event_type": "build_application"}'
|
run: |
|
||||||
|
curl -X POST "${{ secrets.DEB_REPOSITORY }}/dispatches" \
|
||||||
|
-u "${{ secrets.DEB_ACCESS_TOKEN }}" \
|
||||||
|
-H "Accept: application/vnd.github.everest-preview+json" \
|
||||||
|
-H "Content-Type: application/json" \
|
||||||
|
--data '{"event_type": "build"}'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue