From 00bc69bfef13b0a2417c1e1e36aa2dd44d96694a Mon Sep 17 00:00:00 2001 From: engigu Date: Mon, 1 Jan 2024 19:41:43 +0800 Subject: [PATCH] update build release --- .github/workflows/release.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 880bfcd..87e1dc7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,14 +20,17 @@ jobs: - name: Checkout repository uses: actions/checkout@v2 + - name: Change directory to web project + run: cd web/ + - name: Install npm dependencies run: npm i - name: Run npm build - run: cd web/ && npm run build + run: npm run build - name: Check build static - run: cd web/ && ls -la + run: ls -la goreleaser: runs-on: ubuntu-latest