We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d9f438 commit 1e93e65Copy full SHA for 1e93e65
.github/workflows/nightly.yml
@@ -10,11 +10,12 @@ jobs:
10
runs-on: ubuntu-latest
11
steps:
12
- name: Build message title
13
- run: echo ::set-env name=TITLE::Deauther V2.5 $(echo ${{ github.sha }} | cut -c -7)
+ id: notif
14
+ run: echo ::set-output name=TITLE::Deauther V2 $(echo ${{ github.sha }} | cut -c -7)
15
16
- name: Send message
17
run: |
18
curl -X POST https://api.github.com/repos/spacehuhntech/nightly-deauther/dispatches \
19
-H 'Accept: application/vnd.github.everest-preview+json' \
20
-u ${{ secrets.ACCESS_TOKEN }} \
- --data '{"event_type": "${{ env.TITLE }}", "client_payload": {}}'
21
+ --data '{"event_type": "${{ steps.notif.outputs.TITLE }}", "client_payload": {}}'
0 commit comments