We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99d762b commit a365ad5Copy full SHA for a365ad5
.github/workflows/redeploy-eventcatalog-examples.yml
@@ -34,4 +34,14 @@ jobs:
34
- name: Redeploy EventCatalog Demo (FlowMart) Example Catalog
35
run: curl -f -X POST "$VERCEL_DEPLOY_HOOK_URL"
36
env:
37
- VERCEL_DEPLOY_HOOK_URL: ${{ secrets.VERCEL_DEPLOY_HOOK_DEMO_FLOWMART_CATALOG_URL }}
+ VERCEL_DEPLOY_HOOK_URL: ${{ secrets.VERCEL_DEPLOY_HOOK_DEMO_FLOWMART_CATALOG_URL }}
38
+ redeploy-saas:
39
+ runs-on: ubuntu-latest
40
+ if: >
41
+ github.event.workflow_run.conclusion == 'success' &&
42
+ startsWith(github.event.workflow_run.head_commit.message, 'Version Packages')
43
+ steps:
44
+ - name: Redeploy EventCatalog Demo (SaaS) Example Catalog
45
+ run: curl -f -X POST "$VERCEL_DEPLOY_HOOK_URL"
46
+ env:
47
+ VERCEL_DEPLOY_HOOK_URL: ${{ secrets.VERCEL_DEPLOY_HOOK_SAAS_EXAMPLE_CATALOG_URL }}
0 commit comments