2020-03-31 19:40:38 +02:00
|
|
|
name: 'Gotify Notification'
|
2020-03-31 19:36:43 +02:00
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
|
|
|
- name: Gotify Notification
|
2020-11-28 18:29:54 +01:00
|
|
|
uses: eikendev/gotify-action@master
|
2020-03-31 20:09:22 +02:00
|
|
|
with:
|
2020-03-31 19:40:38 +02:00
|
|
|
gotify_api_base: '${{ secrets.gotify_api_base }}'
|
|
|
|
gotify_app_token: '${{ secrets.gotify_app_token }}'
|
2020-03-31 19:36:43 +02:00
|
|
|
notification_title: 'Build Complete'
|
|
|
|
notification_message: 'Your build was completed.'
|