-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add automation to non-ipfs deployments
- Loading branch information
1 parent
4d83c38
commit 284df1f
Showing
7 changed files
with
521 additions
and
47 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
.github/workflows/deploy-goerli-arbitrum-subgraph-no-ipfs.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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Production Subgraph (Arbitrum Goerli) | ||
|
||
on: | ||
push: | ||
tags: | ||
- v* | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: false | ||
|
||
jobs: | ||
deploy: | ||
uses: ./.github/workflows/template-deploy.yaml | ||
with: | ||
ENVIRONMENT: production-arbitrum-goerli-no-ipfs | ||
CONFIG: arbitrumGoerliAddressScript.ts | ||
secrets: | ||
NODE_AUTH_TOKEN: ${{ secrets.graphprotocol_npm_token }} | ||
ACCESS_TOKEN: ${{ secrets.access_token }} |
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,20 @@ | ||
name: Production Subgraph (Goerli) | ||
|
||
on: | ||
push: | ||
tags: | ||
- v* | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: false | ||
|
||
jobs: | ||
deploy: | ||
uses: ./.github/workflows/template-deploy.yaml | ||
with: | ||
ENVIRONMENT: production-goerli-no-ipfs | ||
CONFIG: goerliAddressScript.ts | ||
secrets: | ||
NODE_AUTH_TOKEN: ${{ secrets.graphprotocol_npm_token }} | ||
ACCESS_TOKEN: ${{ secrets.access_token }} |
20 changes: 20 additions & 0 deletions
20
.github/workflows/deploy-production-arbitrum-subgraph-no-ipfs.yaml
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,20 @@ | ||
name: Production Subgraph (Arbitrum) | ||
|
||
on: | ||
push: | ||
tags: | ||
- v* | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: false | ||
|
||
jobs: | ||
deploy: | ||
uses: ./.github/workflows/template-deploy.yaml | ||
with: | ||
ENVIRONMENT: production-arbitrum-no-ipfs | ||
CONFIG: mainnetArbitrumAddressScript.ts | ||
secrets: | ||
NODE_AUTH_TOKEN: ${{ secrets.graphprotocol_npm_token }} | ||
ACCESS_TOKEN: ${{ secrets.access_token }} |
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,20 @@ | ||
name: Production Subgraph (Mainnet) | ||
|
||
on: | ||
push: | ||
tags: | ||
- v* | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: false | ||
|
||
jobs: | ||
deploy: | ||
uses: ./.github/workflows/template-deploy.yaml | ||
with: | ||
ENVIRONMENT: production-no-ipfs | ||
CONFIG: mainnetAddressScript.ts | ||
secrets: | ||
NODE_AUTH_TOKEN: ${{ secrets.graphprotocol_npm_token }} | ||
ACCESS_TOKEN: ${{ secrets.access_token }} |
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
Oops, something went wrong.