You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
375 B
21 lines
375 B
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' |