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