From 234f9d898940a679da8dcc74e0aa206af31f15f8 Mon Sep 17 00:00:00 2001 From: eikendev Date: Tue, 31 Mar 2020 19:40:38 +0200 Subject: [PATCH] Fix syntax errors in sample configuration --- .github/workflows/main.yml | 6 +++--- README.md | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) 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.' ```