fix(runtime,kernel): preserve binary bytes across the relay syscall b… #78
This file contains hidden or 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: pages | |
| permissions: | |
| contents: write | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| build_gh_pages: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '26' | |
| - run: rustup target add wasm32-wasip2 | |
| - run: npm ci | |
| - run: npm run build | |
| - run: npm run doc | |
| - run: mkdir -p ./public && cp -r ./docs/api ./packages/examples/shell/dist/* ./public | |
| - uses: peaceiris/actions-gh-pages@v4 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: ./public | |
| cname: mithic.js.org |