Skip to content

Commit

Permalink
Merge pull request #4132 from JoinColony/fix-gh-action-discord-notifi…
Browse files Browse the repository at this point in the history
…cation

Fix gh action discord notification
  • Loading branch information
bogdan-1337 authored Jan 19, 2023
2 parents 3af62b9 + 66bce2f commit b3a1ad9
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/buildDeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ jobs:
- name: Echo Env Vars through Context
run: |
echo "$GITHUB_CONTEXT"
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
Expand Down Expand Up @@ -65,6 +64,7 @@ jobs:
if: always()
with:
webhook: ${{ env.DISCORD_WEBHOOK }}
title: "Build and push"

# Deploy dapp frontend to QA environment
deployQA:
Expand Down Expand Up @@ -102,6 +102,7 @@ jobs:
if: always()
with:
webhook: ${{ env.DISCORD_WEBHOOK }}
title: "Deploy to QA"

# Deploy dapp frontend to staging environment and sync production data to staging
deployStaging:
Expand Down Expand Up @@ -148,7 +149,8 @@ jobs:
if: always()
with:
webhook: ${{ env.DISCORD_WEBHOOK }}

title: "Deploy to Staging"

# Deploy dapp frontend to production environment
deployProd:

Expand Down Expand Up @@ -186,4 +188,5 @@ jobs:
- uses: sarisia/actions-status-discord@c193626e5ce172002b8161e116aa897de7ab5383
if: always()
with:
webhook: ${{ env.DISCORD_WEBHOOK }}
webhook: ${{ env.DISCORD_WEBHOOK }}
title: "Deploy to Production"

0 comments on commit b3a1ad9

Please sign in to comment.