-
Notifications
You must be signed in to change notification settings - Fork 2
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
3 changed files
with
72 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: deploy-github-page | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
build-web: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: Install rust toolchain | ||
uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: stable | ||
- name: Install Dependencies | ||
run: sudo apt-get update; sudo apt-get install pkg-config libx11-dev libasound2-dev libudev-dev | ||
# - name: Install trunk | ||
# uses: jetli/trunk-action@v0.4.0 | ||
# with: | ||
# version: 'latest' | ||
- name: Install wasm-bindgen | ||
run: | | ||
cargo install wasm-bindgen-cli | ||
- name: Add wasm target | ||
run: | | ||
rustup target add wasm32-unknown-unknown | ||
- name: Build Example | ||
run: | | ||
cargo build --release --target wasm32-unknown-unknown | ||
- name: Wasm bindgen | ||
run: | | ||
wasm-bindgen --no-typescript --target web --out-dir ./dist/ --out-name "jigsaw_puzzle" ./target/wasm32-unknown-unknown/release/jigsaw_puzzle.wasm | ||
- name: optimize Wasm | ||
uses: NiklasEi/wasm-opt-action@v2 | ||
with: | ||
file: dist/*.wasm | ||
- name: Deploy to GitHub Pages | ||
uses: JamesIves/github-pages-deploy-action@v4.2.5 | ||
with: | ||
branch: gh-pages | ||
folder: dist |
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 |
---|---|---|
|
@@ -9,4 +9,6 @@ Cargo.lock | |
|
||
/tiles | ||
/images | ||
jigsaw_puzzle_generator/target | ||
jigsaw_puzzle_generator/target | ||
dist/* | ||
!dist/index.html |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> | ||
<title>Jigsaw Puzzle Game</title> | ||
</head> | ||
<body style="margin: 0;"> | ||
<script type="module"> | ||
import init from './jigsaw_puzzle' | ||
|
||
init().catch((error) => { | ||
if (!error.message.startsWith("Using exceptions for control flow, don't mind me. This isn't actually an error!")) { | ||
throw error; | ||
} | ||
}); | ||
</script> | ||
<canvas id="bevy"> | ||
Javascript and support for canvas is required | ||
</canvas> | ||
</body> | ||
|
||
</html> |