From 10018fbedd78764220864ca5d17b3dafddfd3c5c Mon Sep 17 00:00:00 2001 From: Matthew O'Connell Date: Mon, 13 Nov 2023 17:16:50 +0100 Subject: [PATCH] fix(deploy.yml): replace REACT_APP_ env vars --- .github/workflows/deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 654939ff..effd0a88 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -30,9 +30,9 @@ jobs: - name: Build Dapp run: yarn dapp:build env: - REACT_APP_INFURA_ID: ${{ secrets.INFURA_ID }} - REACT_APP_GA4_ID: ${{ secrets.GA4_ID }} - REACT_APP_DEBUG_LOGS: 'true' + NEXT_PUBLIC_INFURA_ID: ${{ secrets.INFURA_ID }} + NEXT_PUBLIC_GA4_ID: ${{ secrets.GA4_ID }} + NEXT_PUBLIC_DEBUG_LOGS: 'true' - name: Deploy Docs uses: w9jds/firebase-action@master with: