Skip to content

Commit

Permalink
Merge pull request #34 from 0xPolygon/Deployment-fix-for-prod-apps
Browse files Browse the repository at this point in the history
Deployment fix for prod apps
  • Loading branch information
nitinmittal23 authored Sep 19, 2024
2 parents 44629fa + 31e2894 commit 8d96b88
Show file tree
Hide file tree
Showing 10 changed files with 62 additions and 6 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
needs: set-env-variable
with:
app_name: ${{ needs.set-env-variable.outputs.APP_NAME }}
taskdef_file_vars: .github/taskdef/${{ inputs.environment }}-taskdef.yaml
taskdef_file_vars: .github/taskdef/${{ inputs.environment }}-${{ inputs.core_app }}.yaml
aws_region: eu-west-1
environment: ${{ inputs.environment }}
cluster_name: ${{ needs.set-env-variable.outputs.CLUSTER_NAME }}
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/prod_xlayer_mainnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Xlayer mainnet Auto Claim Deployment Prod
on:
push:
branches:
- batch-claim
workflow_dispatch:

jobs:
deploy:
uses: ./.github/workflows/build_and_deploy.yml
with:
environment: 'prod'
core_app: "xlayer-mainnet-auto-claim"
secrets: inherit
14 changes: 14 additions & 0 deletions .github/workflows/prod_zkevm_mainnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Zkevm mainnet Auto Claim ZKEVM Deployment Prod
on:
push:
branches:
- batch-claim
workflow_dispatch:

jobs:
deploy:
uses: ./.github/workflows/build_and_deploy.yml
with:
environment: 'prod'
core_app: "zkevm-mainnet-auto-claim"
secrets: inherit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Auto Claim Deployment Prod
name: Zkevm testnet Auto Claim Deployment Prod
on:
push:
branches:
Expand All @@ -10,5 +10,5 @@ jobs:
uses: ./.github/workflows/build_and_deploy.yml
with:
environment: 'prod'
core_app: "auto-claim"
core_app: "zkevm-testnet-auto-claim"
secrets: inherit
14 changes: 14 additions & 0 deletions .github/workflows/staging_xlayer_mainnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Xlayer mainnet Auto Claim Deployment staging
on:
push:
branches:
- batch-staging
workflow_dispatch:

jobs:
deploy:
uses: ./.github/workflows/build_and_deploy.yml
with:
environment: 'staging'
core_app: "xlayer-mainnet-auto-claim"
secrets: inherit
14 changes: 14 additions & 0 deletions .github/workflows/staging_zkevm_mainnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Zkevm mainnet Auto Claim ZKEVM Deployment staging
on:
push:
branches:
- batch-staging
workflow_dispatch:

jobs:
deploy:
uses: ./.github/workflows/build_and_deploy.yml
with:
environment: 'staging'
core_app: "zkevm-mainnet-auto-claim"
secrets: inherit
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: Auto Claim Deployment Staging
name: Zkevm testnet Auto Claim Deployment staging
on:
push:
branches:
- batch-claim
- batch-staging
workflow_dispatch:

jobs:
deploy:
uses: ./.github/workflows/build_and_deploy.yml
with:
environment: 'staging'
core_app: "auto-claim"
core_app: "zkevm-testnet-auto-claim"
secrets: inherit

0 comments on commit 8d96b88

Please sign in to comment.