Skip to content

Commit

Permalink
Fix discord notification
Browse files Browse the repository at this point in the history
  • Loading branch information
peterpolman committed May 22, 2024
1 parent 7e99ee3 commit ab5f702
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:
run: yarn nx run app:build --prod --mode $BUILD_MODE --skip-nx-cache

- name: Deploy
run: aws s3 sync ./dist/apps/app ${{ S3_URL }} --delete
run: aws s3 sync ./dist/apps/app $S3_URL --delete

discord:
name: Update Discord
Expand All @@ -144,7 +144,7 @@ jobs:
- name: Send message
env:
DISCORD_WEBHOOK: ${{ DISCORD_WEBHOOK }}
DISCORD_WEBHOOK: ${{ env.DISCORD_WEBHOOK }}
uses: Ilshidur/action-discord@master
with:
args: "${{ needs.autodeploy.result == 'success' && '✅' || '⛔' }} Released App `${{ needs.bumpVersion.outputs.newTag }}`"

0 comments on commit ab5f702

Please sign in to comment.