-
Notifications
You must be signed in to change notification settings - Fork 4
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
Matheus Dias de Souza
authored
May 1, 2024
1 parent
8154cf7
commit ddb6c01
Showing
1 changed file
with
3 additions
and
0 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 |
---|---|---|
|
@@ -20,13 +20,16 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- name: Use nightly Rust | ||
run: rustup default nightly | ||
- name: Add wasm32 target | ||
run: rustup target add wasm32-unknown-unknown | ||
- name: Install wasm-bindgen CLI | ||
run: cargo install wasm-bindgen-cli | ||
- name: Build demo | ||
run: cargo build -p as3_parser_demo --release --target wasm32-unknown-unknown | ||
- name: Update demo/dist | ||
run: wasm-bindgen --target web --out-dir demo/dist target/wasm32-unknown-unknown/release/as3_parser_demo.wasm | ||
- name: Git commit report | ||
run: | ||
git config --global user.name 'hydroper' | ||
git config --global user.email '[email protected]' | ||
git add demo | ||
|