From c0cf4e947361546b1121624fdf5dec2e639a1c1f Mon Sep 17 00:00:00 2001 From: Juan Manuel Rodriguez Defago Date: Mon, 24 Oct 2022 17:41:10 -0300 Subject: [PATCH] Removed rinkeby, renamed goerli workflow --- .../workflows/deploy-production-subgraph.yaml | 2 +- .github/workflows/deploy-rinkeby-subgraph.yml | 20 ------------------- 2 files changed, 1 insertion(+), 21 deletions(-) delete mode 100644 .github/workflows/deploy-rinkeby-subgraph.yml diff --git a/.github/workflows/deploy-production-subgraph.yaml b/.github/workflows/deploy-production-subgraph.yaml index 38ba91d3..01792118 100644 --- a/.github/workflows/deploy-production-subgraph.yaml +++ b/.github/workflows/deploy-production-subgraph.yaml @@ -1,4 +1,4 @@ -name: Deploy Subgraph +name: Production Subgraph (Goerli) on: push: diff --git a/.github/workflows/deploy-rinkeby-subgraph.yml b/.github/workflows/deploy-rinkeby-subgraph.yml deleted file mode 100644 index b6e3249f..00000000 --- a/.github/workflows/deploy-rinkeby-subgraph.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Production Subgraph (Rinkeby) - -on: - push: - tags: - - v* - -concurrency: - group: ${{ github.workflow }}-${{ github.ref }} - cancel-in-progress: false - -jobs: - deploy: - uses: graphprotocol/graph-network-subgraph/.github/workflows/template-deploy.yaml@master - with: - ENVIRONMENT: testnet - CONFIG: rinkebyAddressScript.ts - secrets: - NODE_AUTH_TOKEN: ${{ secrets.graphprotocol_npm_token }} - ACCESS_TOKEN: ${{ secrets.access_token }}