From a0fb72a914ed3fe1f9d3a55e2a18f21124f06fe7 Mon Sep 17 00:00:00 2001 From: James Beard Date: Wed, 2 Oct 2024 15:24:41 +1000 Subject: [PATCH] Need "run" command in build line. --- .github/workflows/build.yml | 2 +- .github/workflows/deploy.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 83388cd..b7b2a98 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,4 +20,4 @@ jobs: - name: Install dependencies run: npm install --frozen-lockfile - name: Test build website - run: npm build \ No newline at end of file + run: npm run build \ No newline at end of file diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f92240a..bc1c14c 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -20,7 +20,7 @@ jobs: - name: Install dependencies run: npm install --frozen-lockfile - name: Build website - run: npm build + run: npm run build - name: Upload Build Artifact uses: actions/upload-pages-artifact@v3