Merge pull request #371 from YuukiToriyama/release/v0.1.9 #73
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
name: Deploy demo page to GitHub Pages | |
on: | |
push: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install wasm-pack | |
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh | |
- name: Unit Testing for Wasm module | |
working-directory: core | |
run: wasm-pack test --firefox --headless | |
- name: Build wasm module | |
working-directory: wasm | |
run: wasm-pack build --target web --scope toriyama --out-name japanese_address_parser --features debug | |
- name: Move files | |
run: | | |
mkdir ./publish | |
rm ./wasm/pkg/.gitignore | |
mv ./wasm/pkg ./publish | |
mv ./public ./publish | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
user_name: 'github-actions[bot]' | |
user_email: 'github-actions[bot]@users.noreply.github.com' | |
publish_dir: ./publish |