diff options
author | 2021-08-05 23:01:18 -0700 | |
---|---|---|
committer | 2021-08-05 23:01:18 -0700 | |
commit | db90e7046ae02135ca476cabc2bf37cd123be7a8 (patch) | |
tree | b5b19ec03ad00fcf0891b8bbcb78c22e798258aa | |
parent | a3dd4d6bc877ab1479431b54408ac720a6aa944c (diff) | |
download | astro-db90e7046ae02135ca476cabc2bf37cd123be7a8.tar.gz astro-db90e7046ae02135ca476cabc2bf37cd123be7a8.tar.zst astro-db90e7046ae02135ca476cabc2bf37cd123be7a8.zip |
add discord announcement when a new release goes out
-rw-r--r-- | .github/workflows/release.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 03b7689cd..e4fb70007 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,3 +34,11 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + + - name: Send a Discord notification if a publish happens + #if: steps.changesets.outputs.published == 'true' + env: + DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }} + uses: Ilshidur/action-discord@0.3.2 + with: + args: '🚀 A new release just went out!\nCheck it out: https://github.com/snowpackjs/astro/releases'
\ No newline at end of file |