zed/.github/workflows/release_actions.yml

29 lines
809 B
YAML
Raw Permalink Normal View History

on:
release:
types: [published]
jobs:
discord_release:
runs-on: ubuntu-latest
steps:
- name: Get appropriate URL
id: get-appropriate-url
run: |
if [ "${{ github.event.release.prerelease }}" == "true" ]; then
URL="https://zed.dev/releases/preview/latest"
else
URL="https://zed.dev/releases/stable/latest"
fi
echo "::set-output name=URL::$URL"
- name: Discord Webhook Action
uses: tsickert/discord-webhook@v5.3.0
with:
webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }}
content: |
📣 Zed ${{ github.event.release.tag_name }} was just released!
2023-02-02 21:38:41 +03:00
Restart your Zed or head to ${{ steps.get-appropriate-url.outputs.URL }} to grab it.
2023-02-02 21:38:41 +03:00
${{ github.event.release.body }}