From 314ce0c401b088d0f4b3e764825e74ffdb9df637 Mon Sep 17 00:00:00 2001 From: Oriah Ulrich Date: Sat, 4 May 2024 14:20:36 -0600 Subject: [PATCH] fix ci --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 406e8fd..2399864 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -24,14 +24,14 @@ jobs: rustup target add wasm32-unknown-unknown - name: Build the Rust WASM app and all of its assets - run: trunk build --public-url ${{ github.event.repository.name }} --release + run: cd client && trunk build --public-url ${{ github.event.repository.name }} --release - name: Setup Pages uses: actions/configure-pages@v3 - name: Upload artifact uses: actions/upload-pages-artifact@v1 with: - path: "./dist" + path: "./client/dist" deploy: needs: build