From 7f8da9aaa11dc882af107344cd7efd2a20cc3b34 Mon Sep 17 00:00:00 2001 From: JustinCast Date: Fri, 14 May 2021 16:15:59 -0600 Subject: [PATCH] fix: add missing workflow env vars (#573) --- .github/workflows/push-master-environment.yaml | 9 +++++++++ .github/workflows/push-staging-environment.yaml | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/.github/workflows/push-master-environment.yaml b/.github/workflows/push-master-environment.yaml index 6ddd3edd..52d945c1 100644 --- a/.github/workflows/push-master-environment.yaml +++ b/.github/workflows/push-master-environment.yaml @@ -42,6 +42,15 @@ jobs: DOCKER_PASSWORD: ${{ secrets.DOCKER_HUB_PASSWORD }} BRANCH: production NAMESPACE: mainnet-eosrate + # webapp + REACT_APP_GRAPHQL_HTTP_URL: https://graphql.eosrate.io/v1/graphql + REACT_APP_GRAPHQL_WS_URL: ws://graphql.eosrate.io/v1/graphql + REACT_APP_EOS_API_URL: https://api.eosio.cr + REACT_APP_EOS_API_HOST: api.eosio.cr + REACT_APP_EOS_API_PORT: 443 + REACT_APP_EOS_API_PROTOCOL: https + REACT_APP_EOS_CHAIN_ID: aca376f206b8fc25a6ed44dbdc66547c36c6c33e3a119ffbeaef943642f0e906 + REACT_APP_BLOCK_EXPLORER: https://bloks.io - name: Build kubernetes files id: build_kubernetes_files diff --git a/.github/workflows/push-staging-environment.yaml b/.github/workflows/push-staging-environment.yaml index 43590b41..83084718 100644 --- a/.github/workflows/push-staging-environment.yaml +++ b/.github/workflows/push-staging-environment.yaml @@ -42,6 +42,15 @@ jobs: DOCKER_PASSWORD: ${{ secrets.DOCKER_HUB_PASSWORD }} BRANCH: staging NAMESPACE: jungle-eosrate + # webapp + REACT_APP_GRAPHQL_HTTP_URL: https://graphql-jungle.eosrate.io/v1/graphql + REACT_APP_GRAPHQL_WS_URL: ws://graphql-jungle.eosrate.io/v1/graphql + REACT_APP_EOS_API_URL: https://jungle.eosio.cr + REACT_APP_EOS_API_HOST: jungle.eosio.cr + REACT_APP_EOS_API_PORT: 443 + REACT_APP_EOS_API_PROTOCOL: https + REACT_APP_EOS_CHAIN_ID: 2a02a0053e5a8cf73a56ba0fda11e4d92e0238a4a2aa74fccf46d5a910746840 + REACT_APP_BLOCK_EXPLORER: https://jungle3.bloks.io - name: Build kubernetes files id: build_kubernetes_files