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=$(> "$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!** 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)