mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2025-02-17 06:18:27 +00:00
21 lines
375 B
YAML
21 lines
375 B
YAML
|
name: Release
|
||
|
|
||
|
on:
|
||
|
release:
|
||
|
types: [ published ]
|
||
|
|
||
|
jobs:
|
||
|
|
||
|
release:
|
||
|
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
|
||
|
- name: Check Out Repo
|
||
|
uses: actions/checkout@v3
|
||
|
|
||
|
- name: Send Discord Release Notification
|
||
|
uses: bythope/discord-webhook-messages@v1.1.0
|
||
|
with:
|
||
|
webhookUrl: ${{ secrets.RELEASE_WEBHOOK }}
|
||
|
handler: 'release'
|