Deploy WrapScheduler Subgraphs (Goldsky) #6
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
name: Deploy WrapScheduler Subgraphs (Goldsky) | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- "release-v1/*" | |
paths: | |
- "subgraphs/wrap-scheduler/**" | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: subgraphs/wrap-scheduler | |
strategy: | |
fail-fast: false | |
matrix: | |
networks: | |
[ | |
"avalanche-c", | |
"arbitrum-one", | |
"bsc-mainnet", | |
"eth-mainnet", | |
"xdai-mainnet", | |
"optimism-mainnet", | |
"polygon-mainnet", | |
"optimism-sepolia", | |
"base-mainnet" | |
] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
- name: Install | |
run: pnpm install | |
- name: Generate YAML & Types | |
run: pnpm gen | |
- name: Build | |
run: pnpm exec graph build ${{format('./{0}.subgraph.yaml', matrix.networks)}} | |
- name: Test | |
run: pnpm test | |
- name: Get Version | |
id: get-version | |
uses: actions/github-script@v4 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
const fs = require('fs'); | |
const packageJson = JSON.parse(fs.readFileSync('package.json')); | |
return packageJson.version; | |
- name: Goldsky Login | |
run: pnpm exec goldsky login --token ${{secrets.GOLDSKY_API_KEY}} | |
- name: Goldsky Deploy | |
run: pnpm exec goldsky subgraph deploy ${{format('auto-wrap-v1-{0}/{1}', matrix.networks, steps.get-version.outputs.result) }} --path ./build | |
continue-on-error: true # We still want to tag the latest deployment if it was already deployed. | |
- name: Goldsky Tag | |
run: pnpm exec goldsky subgraph tag create ${{format('auto-wrap-v1-{0}/{1}', matrix.networks, steps.get-version.outputs.result) }} --tag prod |