Fix syntax errors in sample configuration
This commit is contained in:
parent
5937abe435
commit
234f9d8989
2 changed files with 6 additions and 6 deletions
6
.github/workflows/main.yml
vendored
6
.github/workflows/main.yml
vendored
|
@ -1,4 +1,4 @@
|
|||
name: Gotify Notification
|
||||
name: 'Gotify Notification'
|
||||
on: [push]
|
||||
jobs:
|
||||
build:
|
||||
|
@ -8,7 +8,7 @@ jobs:
|
|||
- name: Gotify Notification
|
||||
uses: eikendev/action-gotify@master
|
||||
env:
|
||||
gotify_api_base: ${{ secrets.gotify_api_base }}
|
||||
gotify_app_token: ${{ secrets.gotify_app_token }}
|
||||
gotify_api_base: '${{ secrets.gotify_api_base }}'
|
||||
gotify_app_token: '${{ secrets.gotify_app_token }}'
|
||||
notification_title: 'Build Complete'
|
||||
notification_message: 'Your build was completed.'
|
||||
|
|
|
@ -36,7 +36,7 @@ This action has no outputs.
|
|||
Create a file `.github/workflows/main.yml` in your repository with the following contents.
|
||||
|
||||
```yaml
|
||||
name: Gotify Notification
|
||||
name: 'Gotify Notification'
|
||||
on: [push]
|
||||
jobs:
|
||||
build:
|
||||
|
@ -46,8 +46,8 @@ jobs:
|
|||
- name: Gotify Notification
|
||||
uses: eikendev/action-gotify@master
|
||||
env:
|
||||
gotify_api_base: ${{ secrets.gotify_api_base }}
|
||||
gotify_app_token: ${{ secrets.gotify_app_token }}
|
||||
gotify_api_base: '${{ secrets.gotify_api_base }}'
|
||||
gotify_app_token: '${{ secrets.gotify_app_token }}'
|
||||
notification_title: 'Build Complete'
|
||||
notification_message: 'Your build was completed.'
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue