diff --git a/.github/workflows/deploy-production.yaml b/.github/workflows/deploy-production.yaml index 4daf9a6..a9cea33 100644 --- a/.github/workflows/deploy-production.yaml +++ b/.github/workflows/deploy-production.yaml @@ -35,7 +35,7 @@ jobs: restore-keys: | ${{ runner.os }}-pnpm-store- - name: Install dependencies - run: pnpm install + run: pnpm install --no-frozen-lockfile - name: Install Vercel CLI run: npm install --global vercel@latest - name: Pull Vercel Environment Information diff --git a/.github/workflows/deploy-staging.yaml b/.github/workflows/deploy-staging.yaml index ce05e82..2c006f0 100644 --- a/.github/workflows/deploy-staging.yaml +++ b/.github/workflows/deploy-staging.yaml @@ -36,7 +36,7 @@ jobs: restore-keys: | ${{ runner.os }}-pnpm-store- - name: Install dependencies - run: pnpm install + run: pnpm install --no-frozen-lockfile - name: Install Vercel CLI run: npm install --global vercel@latest - name: Pull Vercel Environment Information