-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ build-wasm: | |
cd emu-wasm && wasm-pack build | ||
|
||
dev-wasm: | ||
pnpm dev | ||
cd web && pnpm dev | ||
|
||
|
||
# Rom tests | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.