diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index 77b85f07..e2da6933 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -22,10 +22,12 @@ jobs: # run: npm install && npm run build - name: npm ci run: rm -rf node_modules && rm package-lock.json && npm install - # - name: upload artifacts - # uses: actions/upload-pages-artifact@v3 - # with: - # path: build + - name: Build the project + run: npm run build + - name: upload artifacts + uses: actions/upload-pages-artifact@v3 + with: + path: build deploy: # Add a dependency to the build job needs: build