diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7cadb6b..773d7f4 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -23,8 +23,15 @@ jobs: - name: Checkout uses: actions/checkout@v3 - - name: Build - run: npm i && npx vite build + - name: Build Rust + run: + - cd wasm + - cargo build + + - name: Build JS + run: + - npm i + - npx vite build - name: Setup Pages uses: actions/configure-pages@v3