From d9a56e02ce651a1cd7cb11891d4ef9bb0ea30cac Mon Sep 17 00:00:00 2001 From: osaajani <> Date: Tue, 23 Jun 2020 20:14:19 +0200 Subject: [PATCH] add trigger deb build action --- .github/workflows/trigger_deb_build.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/trigger_deb_build.yml b/.github/workflows/trigger_deb_build.yml index 1a3a9e5..872bd2f 100644 --- a/.github/workflows/trigger_deb_build.yml +++ b/.github/workflows/trigger_deb_build.yml @@ -8,10 +8,15 @@ on: [push] # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: - php-cs-fixer: + trigger_deb_build: 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"}' + 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"}'