We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a86a9d commit be00beeCopy full SHA for be00bee
.github/workflows/release.yml
@@ -15,6 +15,7 @@ jobs:
15
outputs:
16
release_created: ${{ steps.release.outputs.release_created }}
17
tag_name: ${{ steps.release.outputs.tag_name }}
18
+ body: ${{ steps.release.outputs.body }}
19
steps:
20
- uses: googleapis/release-please-action@v4
21
if: github.ref == 'refs/heads/main'
@@ -73,3 +74,15 @@ jobs:
73
74
run: pnpm publish
75
env:
76
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
77
+
78
+ - name: Send Discord notification
79
+ if: ${{ needs.release-please.outputs.release_created }}
80
+ uses: Ilshidur/[email protected]
81
+ env:
82
+ DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
83
+ with:
84
+ args: |
85
+ 🔑 Keyserver Release ${{ needs.release-please.outputs.tag_name }} created!
86
87
+ **Changelog:**
88
+ ${{ needs.release-please.outputs.body }}
0 commit comments