Skip to content

Commit

Permalink
fix(repo): update new paths in ui workflows (taikoxyz#17161)
Browse files Browse the repository at this point in the history
Co-authored-by: Karim <[email protected]>
  • Loading branch information
kimo-ice and Karim authored May 14, 2024
1 parent b786889 commit 8463c0d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/bridge-ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ on:

jobs:
build-and-test:
uses: ./.github/workflows/bridge-ui-ci.yml
uses: ./.github/workflows/bridge-ui--ci.yml

# Deployment name follow the pattern: deploy_<appname(bridge-ui)>_<network(devnet|hekla|mainnet)>_<environment(preview|production)>
deploy_bridge-ui_hekla_preview:
if: ${{ github.ref_type != 'tag' }}
needs: build-and-test
uses: ./.github/workflows/vercel-deploy.yml
uses: ./.github/workflows/repo--vercel-deploy.yml
with:
environment: "preview"
flags: ""
Expand All @@ -33,7 +33,7 @@ jobs:
deploy_bridge-ui_devnet_preview:
if: ${{ github.ref_type != 'tag' }}
needs: build-and-test
uses: ./.github/workflows/vercel-deploy.yml
uses: ./.github/workflows/repo--vercel-deploy.yml
with:
environment: "preview"
flags: ""
Expand All @@ -45,7 +45,7 @@ jobs:
deploy_bridge-ui_hekla_production:
if: ${{ startsWith(github.ref, 'refs/tags/bridge-ui-v') }}
needs: build-and-test
uses: ./.github/workflows/vercel-deploy.yml
uses: ./.github/workflows/repo--vercel-deploy.yml
with:
environment: "production"
flags: "--prod"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/guardian-prover-health-check-ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ on:

jobs:
build-and-test:
uses: ./.github/workflows/guardians-ui-ci.yml
uses: ./.github/workflows/guardian-prover-health-check-ui--ci.yml

# Deployment name follow the pattern: deploy_<appname(guardian-prover-health-check-ui)>_<network(devnet|hekla|mainnet)>_<environment(preview|production)>
deploy_guardians-ui_hekla_preview:
if: ${{ github.ref_name != 'main' }}
needs: build-and-test
uses: ./.github/workflows/vercel-deploy.yml
uses: ./.github/workflows/repo--vercel-deploy.yml
with:
environment: "preview"
flags: ""
Expand All @@ -30,7 +30,7 @@ jobs:
deploy_guardians-ui_devnet_preview:
if: ${{ github.ref_name != 'main' }}
needs: build-and-test
uses: ./.github/workflows/vercel-deploy.yml
uses: ./.github/workflows/repo--vercel-deploy.yml
with:
environment: "preview"
flags: ""
Expand All @@ -42,7 +42,7 @@ jobs:
deploy_guardians-ui_hekla_production:
if: ${{ github.ref_name == 'main' && contains(github.ref, 'refs/tags/guardians-ui-') }}
needs: build-and-test
uses: ./.github/workflows/vercel-deploy.yml
uses: ./.github/workflows/repo--vercel-deploy.yml
with:
environment: "production"
flags: "--prod"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/taikoon-ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ on:

jobs:
build-and-test:
uses: ./.github/workflows/taikoon-ui-ci.yml
uses: ./.github/workflows/taikoon-ui--ci.yml

# Deployment name follow the pattern: deploy_<appname(taikoon-ui)>_<network(devnet|hekla|mainnet)>_<environment(preview|production)>
deploy_taikoon-ui_mainnet_preview:
if: ${{ github.ref_name != 'main' }}
needs: build-and-test
uses: ./.github/workflows/vercel-deploy.yml
uses: ./.github/workflows/repo--vercel-deploy.yml
with:
environment: 'preview'
flags: ''
Expand All @@ -30,7 +30,7 @@ jobs:
deploy_taikoon-ui_mainnet_production:
if: ${{ github.ref_name == 'main' && contains(github.ref, 'refs/tags/taikoon-ui-') }}
needs: build-and-test
uses: ./.github/workflows/vercel-deploy.yml
uses: ./.github/workflows/repo--vercel-deploy.yml
with:
environment: 'production'
flags: '--prod'
Expand Down

0 comments on commit 8463c0d

Please sign in to comment.