Create nightly.yml

This commit is contained in:
Stefan Kremser
2020-07-10 18:39:37 +02:00
committed by GitHub
parent 2dc92ca487
commit 2f6bf6fc21

20
.github/workflows/nightly.yml vendored Normal file
View File

@@ -0,0 +1,20 @@
name: Trigger nightly build
on:
push:
jobs:
notify-nightly:
name: "Trigger new build on nightly-deauther"
runs-on: ubuntu-latest
steps:
- name: Build message title
run: echo ::set-env name=TITLE::Deauther V2.5 $(echo ${{ github.sha }} | cut -c -7)
- name: Send message
run: |
curl -X POST https://api.github.com/repos/spacehuhntech/nightly-deauther/dispatches \
-H 'Accept: application/vnd.github.everest-preview+json' \
-u ${{ secrets.ACCESS_TOKEN }} \
--data '{"event_type": "${{ env.TITLE }}", "client_payload": {}}'