From fdff72e70105e34914614a9f6f00fa3ba41e3ca6 Mon Sep 17 00:00:00 2001 From: Muhammad Razin Syakib Date: Tue, 27 Aug 2024 23:16:12 +0700 Subject: [PATCH] [C8 FE*] actions v15 (not use run build) --- .github/workflows/production.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/production.yaml b/.github/workflows/production.yaml index 33c4379..a462d59 100644 --- a/.github/workflows/production.yaml +++ b/.github/workflows/production.yaml @@ -32,10 +32,10 @@ jobs: - name: Install Dependencies run: yarn install --frozen-lockfile - - name: Run Build - run: yarn run build - with: - path: .vercel/output + # - name: Run Build + # run: yarn run build + # with: + # path: .vercel/output - name: Install Vercel CLI run: yarn global add vercel@latest @@ -43,8 +43,8 @@ jobs: - name: Pull Vercel Environment Information run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} - # - name: Build Project Artifacts - # run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }} + - name: Build Project Artifacts + run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }} - name: Deploy Project Artifacts run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}