-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from 0xPolygon/Deployment-fix-for-prod-apps
Deployment fix for prod apps
- Loading branch information
Showing
10 changed files
with
62 additions
and
6 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
6 changes: 3 additions & 3 deletions
6
.github/workflows/deployment_staging.yml → .github/workflows/staging_zkevm_testnet.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |