From 0effaf1a6bfec62d29923dfae27b42743e569ef1 Mon Sep 17 00:00:00 2001 From: Chase Manning Date: Mon, 22 Jan 2024 15:58:50 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20fix=20issue=20with=20deploy=20pi?= =?UTF-8?q?pline?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/cd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index a5690bf0..151c7be1 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -38,11 +38,11 @@ jobs: - name: Setup Node uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 - name: Installing Dependencies run: yarn - name: Building App - run: yarn run build + run: export NODE_OPTIONS=--openssl-legacy-provider && yarn run build - name: Install Firebase Tools run: npm install -g firebase-tools - name: Deploying to Firebase