Skip to content

Commit

Permalink
Merge pull request #416 from carbon-bond/webhook-path
Browse files Browse the repository at this point in the history
修改 CI/CD 的 webhook 路徑
  • Loading branch information
MROS authored Jun 19, 2022
2 parents 909a4d9 + e25a40e commit fd45e9a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/api-service-build-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
if: ${{ success() }}
uses: distributhor/workflow-webhook@v2
env:
webhook_url: ${{ secrets.PRODUCTION_WEBHOOK_URL }}/hooks/redeploy-api-service
webhook_url: ${{ secrets.PRODUCTION_WEBHOOK_URL }}/hooks/production-redeploy-api-service
webhook_secret: ${{ secrets.PRODUCTION_WEBHOOK_SECRET }}
verify_ssl: false
verbose: true
2 changes: 1 addition & 1 deletion .github/workflows/api-service-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
if: ${{ success() }}
uses: distributhor/workflow-webhook@v2
env:
webhook_url: ${{ secrets.DEV_WEBHOOK_URL }}/hooks/redeploy-api-service
webhook_url: ${{ secrets.DEV_WEBHOOK_URL }}/hooks/dev-redeploy-api-service
webhook_secret: ${{ secrets.DEV_WEBHOOK_SECRET }}
verify_ssl: false
verbose: true
2 changes: 1 addition & 1 deletion .github/workflows/frontend-build-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
if: ${{ success() }}
uses: distributhor/workflow-webhook@v2
env:
webhook_url: ${{ secrets.PRODUCTION_WEBHOOK_URL }}/hooks/redeploy-frontend
webhook_url: ${{ secrets.PRODUCTION_WEBHOOK_URL }}/hooks/production-redeploy-frontend
webhook_secret: ${{ secrets.PRODUCTION_WEBHOOK_SECRET }}
verify_ssl: false
verbose: true
2 changes: 1 addition & 1 deletion .github/workflows/frontend-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
if: ${{ success() }}
uses: distributhor/workflow-webhook@v2
env:
webhook_url: ${{ secrets.DEV_WEBHOOK_URL }}/hooks/redeploy-frontend
webhook_url: ${{ secrets.DEV_WEBHOOK_URL }}/hooks/dev-redeploy-frontend
webhook_secret: ${{ secrets.DEV_WEBHOOK_SECRET }}
verify_ssl: false
verbose: true

0 comments on commit fd45e9a

Please sign in to comment.