summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorjoffrey-bion <joffrey.bion@gmail.com>2021-02-10 01:57:49 +0100
committerjoffrey-bion <joffrey.bion@gmail.com>2021-02-10 01:57:49 +0100
commitc94618d071aa4ab72fa5035813d5c1130df0886b (patch)
treea7db0e576475907fadeb7523429266ca0c2ca380 /.github
parentRemove key binding for name generation (diff)
downloadseven-wonders-c94618d071aa4ab72fa5035813d5c1130df0886b.tar.gz
seven-wonders-c94618d071aa4ab72fa5035813d5c1130df0886b.tar.bz2
seven-wonders-c94618d071aa4ab72fa5035813d5c1130df0886b.zip
Improve discord notifications
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci-cd.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml
index 65303864..205bb0f6 100644
--- a/.github/workflows/ci-cd.yml
+++ b/.github/workflows/ci-cd.yml
@@ -89,7 +89,7 @@ jobs:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK_SEVEN_WONDERS }}
uses: Ilshidur/action-discord@0.3.0
with:
- args: 'Deploying new version ([see changes]({{ EVENT_PAYLOAD.compare }}))...'
+ args: "[Build #${{github.run_id}}](https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}): Deploying new version `${{ env.DOCKERHUB_USER }}/${{ env.DOCKER_IMAGE_NAME }}:${{ env.DOCKER_IMAGE_TAG_BUILD }}` ([see changes]({{ EVENT_PAYLOAD.compare }}))..."
- name: Deploy to DigitalOcean Kubernetes
run: kubectl apply -f kubernetes/server.yml
bgstack15