From 5faafe703f36e7101b0ed9acfc123fe4275f4103 Mon Sep 17 00:00:00 2001 From: Melvin Teo <62491197+meleongg@users.noreply.github.com> Date: Sun, 3 Dec 2023 21:29:30 -0800 Subject: [PATCH] Fix firebase hosting merge yaml file --- .github/workflows/firebase-hosting-merge.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/firebase-hosting-merge.yml b/.github/workflows/firebase-hosting-merge.yml index 5f9c125b..4df658fc 100644 --- a/.github/workflows/firebase-hosting-merge.yml +++ b/.github/workflows/firebase-hosting-merge.yml @@ -15,7 +15,8 @@ jobs: uses: actions/setup-node@v3 with: node-version: '16.x' - - run: npm ci && npm run build + - name: Install and Build + run: yarn install --frozen-lockfile && yarn build env: NEXT_PUBLIC_FIREBASE_API_KEY: ${{ secrets.NEXT_PUBLIC_FIREBASE_API_KEY }} NEXT_PUBLIC_FIREBASE_APP_ID: ${{ secrets.NEXT_PUBLIC_FIREBASE_APP_ID }}