diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1608a33..f7f2a08 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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.' diff --git a/README.md b/README.md index 83b21c8..920514f 100644 --- a/README.md +++ b/README.md @@ -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.' ```