mirror of
https://github.com/RaspbianFrance/raspisms.git
synced 2025-04-21 08:56:27 +02:00
add trigger deb build action
This commit is contained in:
parent
d5c52aab09
commit
7f6259057b
1 changed files with 17 additions and 0 deletions
17
.github/workflows/trigger_deb_build.yml
vendored
Normal file
17
.github/workflows/trigger_deb_build.yml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
# This is a basic workflow to help you get started with Actions
|
||||
|
||||
name: Trigger .deb build
|
||||
|
||||
# Controls when the action will run. Triggers the workflow on push or pull request
|
||||
# events but only for the master branch
|
||||
on: [push]
|
||||
|
||||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
||||
jobs:
|
||||
php-cs-fixer:
|
||||
name: Trigger .deb build
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- 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"}'
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue