don't overwrite last line break in packet with 0. #36
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: WASM -> GH Pages | |
on: | |
push: | |
branches: [ master ] | |
env: | |
EM_VERSION: 2.0.15 | |
EM_CACHE_FOLDER: 'emsdk-cache' | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# we need emsdk, obviously | |
- name: Setup emsdk cache | |
id: cache-system-libraries | |
uses: actions/cache@v3 | |
with: | |
path: ${{env.EM_CACHE_FOLDER}} | |
key: emsdk-${{env.EM_VERSION}}-${{ runner.os }} | |
- uses: mymindstorm/setup-emsdk@v11 | |
with: | |
version: ${{env.EM_VERSION}} | |
actions-cache-folder: ${{env.EM_CACHE_FOLDER}} | |
- name: Prepare sledconf | |
run: cp Makefiles/sledconf.emscripten sledconf | |
- name: Build | |
run: make | |
- name: Collect output and support files | |
run: | | |
mkdir wasm | |
cp src/modules/out_emscripten_canvas2d.html wasm/index.html | |
cp src/modules/out_emscripten_canvas2d.woff wasm/ | |
cp sled.wasm wasm/ | |
cp sled.js wasm/ | |
- name: Deploy to GitHub Pages | |
# todo: switch to https://github.com/marketplace/actions/upload-github-pages-artifact once it's stable? | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
# This is the branch you wish to deploy to, for example gh-pages or docs. | |
branch: gh-pages | |
# The folder in your repository that you want to deploy. If your build script compiles into a directory named build you would put it here. Folder paths cannot have a leading / or ./. If you wish to deploy the root directory you can place a . here. | |
folder: wasm |