fix: pool APR (#139) #35
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 subgraph | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install modules | |
run: yarn | |
- name: Generate config | |
run: yarn generate-config:goerli | |
- name: Codegen | |
run: yarn codegen:goerli | |
- name: Authorize TheGraph | |
run: yarn authorize ${{secrets.THE_GRAPH_ACCESS_TOKEN}} | |
- name: Deploy | |
run: yarn deploy:goerli |