mirror of
https://github.com/aljazceru/opencode.git
synced 2025-12-24 19:24:22 +01:00
15 lines
324 B
YAML
15 lines
324 B
YAML
name: discord
|
|
|
|
on:
|
|
release:
|
|
types: [published] # fires only when a release is published
|
|
|
|
jobs:
|
|
notify:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Send nicely-formatted embed to Discord
|
|
uses: SethCohen/github-releases-to-discord@v1
|
|
with:
|
|
webhook_url: ${{ secrets.DISCORD_WEBHOOK }}
|