mirror of
https://github.com/fleetbase/fleetbase.git
synced 2025-12-19 14:18:57 +00:00
Some checks failed
Fleetbase CI / Build and Start Docker Services (push) Has been cancelled
61 lines
1.8 KiB
YAML
61 lines
1.8 KiB
YAML
name: Discord Announcement
|
||
|
||
on:
|
||
workflow_run:
|
||
workflows: ["Create Release"]
|
||
types: [completed]
|
||
|
||
workflow_dispatch:
|
||
inputs:
|
||
tag:
|
||
description: "Release tag to announce (e.g. v0.7.1)"
|
||
required: true
|
||
|
||
jobs:
|
||
discord_announcement:
|
||
runs-on: ubuntu-latest
|
||
|
||
steps:
|
||
# 1️⃣ Figure out which tag we’re talking about
|
||
- id: vars
|
||
shell: bash
|
||
run: |
|
||
if [[ "${{ github.event_name }}" == "workflow_dispatch" ]]; then
|
||
TAG="${{ github.event.inputs.tag }}"
|
||
else
|
||
TAG="${{ github.event.workflow_run.head_branch }}"
|
||
fi
|
||
echo "TAG=$TAG" >> "$GITHUB_ENV"
|
||
|
||
# 2️⃣ Check out the exact commit for that tag
|
||
- uses: actions/checkout@v3
|
||
with:
|
||
ref: ${{ env.TAG }}
|
||
fetch-depth: 1
|
||
|
||
# 3️⃣ Stash RELEASE.md in an env var (one atomic write → no EOF error)
|
||
- id: prep-body
|
||
shell: bash
|
||
run: |
|
||
body=$(<RELEASE.md)
|
||
max=4000
|
||
[[ ${#body} -gt $max ]] && body="${body:0:$max}…" # add ellipsis if trimmed
|
||
{
|
||
echo "body<<EOF"
|
||
echo "$body"
|
||
echo "EOF"
|
||
} >> "$GITHUB_OUTPUT"
|
||
|
||
# 4️⃣ Fire the webhook
|
||
- uses: tsickert/discord-webhook@v5.3.0
|
||
with:
|
||
webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }}
|
||
username: Fleetbase
|
||
content: |
|
||
@everyone
|
||
📦 **Fleetbase ${{ env.TAG }} released!**
|
||
<https://github.com/${{ github.repository }}/releases/tag/${{ env.TAG }}>
|
||
embed-title: "Fleetbase ${{ env.TAG }} — release notes"
|
||
embed-url: "https://github.com/fleetbase/fleetbase/releases/tag/${{ env.TAG }}"
|
||
embed-description: ${{ steps.prep-body.outputs.body }}
|
||
embed-color: 4362730 # 0x4291EA (Fleetbase Blue) |