From e12b54941abdc32e319e4fc523f1cc17e3fc8b27 Mon Sep 17 00:00:00 2001 From: Miles Johnson Date: Mon, 17 Oct 2022 11:24:59 -0700 Subject: [PATCH] build: Fix broken website deploy. --- .github/workflows/docs.yml | 2 +- CONTRIBUTING.md | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 62719aeb578..98af701bbce 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -13,7 +13,7 @@ jobs: with: cache: yarn - run: yarn install --immutable - - run: yarn build + - run: bash ./scripts/release/buildPackages.sh - run: yarn workspace website run build - uses: peaceiris/actions-gh-pages@v3 with: diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b2f008ccd02..163f2fee285 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -40,7 +40,6 @@ Once setup, install dependencies build initial packages. ```bash yarn install -yarn build ``` ## How to @@ -117,7 +116,7 @@ Once installed, run `cargo make test-coverage`, which is a lengthy and time cons will build the binary in debug mode with instrumentation enabled, run all unit and integration tests, and generate _a ton_ of `*.profraw` files in the repository (do not commit these!). -From here you can generate an HTML coverage report to `./coverage` with `cargo make generate-html`. +From here you can generate an HTML coverage report to `./coverage` with `cargo make generate-html`. Open the `index.html` file to browse line-by-line coverage. Once done, run `cargo make clean-profraw` to cleanup and remove all the `*.profraw` files.