From 27a4b14aab0531f7e3d1720b3a7e1eafd5597174 Mon Sep 17 00:00:00 2001 From: mmd-afegbua Date: Tue, 2 Jul 2024 16:33:39 +0100 Subject: [PATCH] fixed ci option typo --- .github/workflows/call.deploy-subgraph.yml | 2 +- .github/workflows/handler.deploy-production-subgraphs.yml | 4 ++-- packages/subgraph/tasks/deploy.sh | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/call.deploy-subgraph.yml b/.github/workflows/call.deploy-subgraph.yml index d017d246b4..5aab6388c3 100644 --- a/.github/workflows/call.deploy-subgraph.yml +++ b/.github/workflows/call.deploy-subgraph.yml @@ -5,7 +5,7 @@ on: inputs: vendor: required: true - description: "Where to deploy subgraph to; superfluid, goldsky, graphstudio or airstack" + description: "Where to deploy subgraph to; superfluid, goldsky, graph or airstack" type: string deployment_env: required: true diff --git a/.github/workflows/handler.deploy-production-subgraphs.yml b/.github/workflows/handler.deploy-production-subgraphs.yml index 78e07037a4..19d9aaa702 100644 --- a/.github/workflows/handler.deploy-production-subgraphs.yml +++ b/.github/workflows/handler.deploy-production-subgraphs.yml @@ -12,13 +12,13 @@ on: inputs: vendor: required: true - description: "Where to deploy subgraph to; one of `superfluid`, `goldsky`, `graphstudio` or `airstack`" + description: "Where to deploy subgraph to; one of `superfluid`, `goldsky`, `graph` or `airstack`" default: "superfluid" type: choice options: - superfluid - goldsky - - graphstudio + - graph - airstack deployment_env: required: true diff --git a/packages/subgraph/tasks/deploy.sh b/packages/subgraph/tasks/deploy.sh index 45d4711ca9..9e62302ac2 100755 --- a/packages/subgraph/tasks/deploy.sh +++ b/packages/subgraph/tasks/deploy.sh @@ -24,7 +24,7 @@ GOLDSKY_NETWORKS=( "polygon-mainnet" "xdai-mainnet" "eth-mainnet" "base-mainnet" AIRSTACK_NETWORKS=( "degenchain") declare -A VENDOR_NETWORKS=( - ["graphstudio"]="${GRAPH_NETWORKS[@]}" + ["graph"]="${GRAPH_NETWORKS[@]}" ["satsuma"]="${SATSUMA_NETWORKS[@]}" ["superfluid"]="${SUPERFLUID_NETWORKS[@]}" ["goldsky"]="${GOLDSKY_NETWORKS[@]}"