From b2e9ef83673300d051f37e0b349af269abc5a28d Mon Sep 17 00:00:00 2001 From: Savy011 <106910589+Savy011@users.noreply.github.com> Date: Fri, 9 Jun 2023 23:29:52 +0530 Subject: [PATCH] U[dated Deployment Pipeline --- .github/workflows/pipeline.yaml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pipeline.yaml b/.github/workflows/pipeline.yaml index 8dd9a9ee9e..7b1093531a 100644 --- a/.github/workflows/pipeline.yaml +++ b/.github/workflows/pipeline.yaml @@ -38,6 +38,21 @@ jobs: run: flyctl deploy --remote-only --ha=false env: FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }} + - name: Deployment succeded + uses: rjstone/discord-webhook-notify@v1.0.0 + if: ${{ success() }} + with: + severity: info + details: Deployment Succeeded!! + webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} + - name: Deployment failed + uses: rjstone/discord-webhook-notify@v1.0.0 + if: ${{ failure() }} + with: + severity: info + details: Deployment Failed!! + webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} + tag_release: needs: [simple_deployment_pipeline] @@ -46,7 +61,7 @@ jobs: - uses: actions/checkout@v3 - name: Bumping version and push tag if: ${{ github.event_name == 'push' && !contains(github.event.head_commit.message, '#skip') }} - uses: anothrNick/github-tag-action@1.64.0 + uses: anothrNick/github-tag-action@c360518fb8131e99795f8208f8a6105ceca55ec2 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} DEFAULT_BUMP: patch \ No newline at end of file