Bump webpack from 5.77.0 to 5.94.0 in /popcap-pak-wasm/demo (#40) #38
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: Doc | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
# We will also build the demo as part of the docs | |
Doc: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build Documentation | |
run: cargo doc --all --no-deps | |
- name: Setup Demo build | |
run: make setup-wasm-demo | |
- name: Build Demo | |
run: make build-wasm-demo NODE_ENV=production | |
- run: cp -R ./popcap-pak-wasm/demo/dist/ ./target/doc/ | |
- name: Deploy Docs | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_branch: gh-pages | |
publish_dir: ./target/doc | |
force_orphan: true |