Skip to content

Commit

Permalink
move stuff back
Browse files Browse the repository at this point in the history
  • Loading branch information
39bytes committed Aug 19, 2024
1 parent 2664fce commit e877867
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ jobs:
uses: jetli/[email protected]

- name: Build WASM target
working-directory: ./emu-wasm
run: wasm-pack build
run: cd emu-wasm && wasm-pack build


- name: Install pnpm
Expand All @@ -53,10 +52,10 @@ jobs:
cache: 'pnpm'

- name: Install dependencies
run: pnpm install
run: cd web && pnpm install

- name: Build
run: pnpm build
run: cd web && pnpm build

- name: Setup Pages
uses: actions/configure-pages@v4
Expand All @@ -65,7 +64,8 @@ jobs:
uses: actions/upload-pages-artifact@v3
with:
# Upload dist folder
path: './web/dist'
path: 'web/dist'
if-no-files-found: error

- name: Deploy to GitHub Pages
id: deployment
Expand Down
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ build-wasm:
cd emu-wasm && wasm-pack build

dev-wasm:
pnpm dev
cd web && pnpm dev


# Rom tests
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit e877867

Please sign in to comment.