Skip to content

Commit

Permalink
U[dated Deployment Pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Savy011 committed Jun 9, 2023
1 parent 3e06647 commit b2e9ef8
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/pipeline.yaml
Expand Up @@ -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]
Expand All @@ -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

0 comments on commit b2e9ef8

Please sign in to comment.