Create subgraph #1
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: Create subgraph | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
environment: | ||
description: 'dev/prod env' | ||
default: 'development' | ||
type: choice | ||
required: true | ||
options: | ||
- development | ||
- production | ||
subgraph_name: | ||
description: 'subgraph name' | ||
required: true | ||
type: string | ||
jobs: | ||
build: | ||
environment: development | ||
runs on: self-hosted | ||
Check failure on line 21 in .github/workflows/create-subgraph.yml GitHub Actions / Create subgraphInvalid workflow file
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Install graph-cli | ||
run: | | ||
sudo yarn global add @graphprotocol/graph-cli | ||
- name: Install yq | ||
run: | | ||
sudo add-apt-repository ppa:rmescandon/yq | ||
sudo apt update | ||
sudo apt install yq -y | ||
yq --version | ||
- name: Read sub.folder.name from folder.yaml and create subgraph | ||
run: | | ||
if [ "${{ github.event.inputs.environment }}" == "development" ]; then | ||
NODE_URL="$DEV_NODE_URL" | ||
else | ||
NODE_URL="$PROD_NODE_URL" | ||
fi | ||
graph create --node $NODE_URL $SUBGRAPH_NAME | ||
env: | ||
DEV_NODE_URL: ${{ secrets.DEV_NODE_URL }} | ||
PROD_NODE_URL: ${{ secrets.PROD_NODE_URL }} | ||
SUBGRAPH_NAME: ${{ github.events.inputs.subgraph_name }} | ||