We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9e6d03 commit 7926f6eCopy full SHA for 7926f6e
.github/workflows/release.yml
@@ -28,6 +28,20 @@ jobs:
28
args: release --clean --config .goreleaser.4.yml
29
env:
30
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31
+ - name: Notify success
32
+ uses: rjstone/discord-webhook-notify@v1
33
+ if: success()
34
+ with:
35
+ severity: info
36
+ details: New nightly build available!
37
+ webhookUrl: ${{ secrets.DISCORD_WEBHOOK }}
38
+ - name: Notify failure
39
40
+ if: failure()
41
42
+ severity: error
43
+ details: Nightly failed
44
45
# parse artifacts to the format required for image attestation
46
# - run: |
47
# echo "digest=$(echo "$ARTIFACTS" | jq -r '.[]|select(.type=="Docker Manifest")|select(.name|test(":v"))|.extra.Digest')" >> "$GITHUB_OUTPUT"
0 commit comments