Update README.md #6
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
# Build Workflow | |
name: build | |
# Run on Push | |
on: [push] | |
jobs: | |
build: | |
# Run this on a default linux machine | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: mymindstorm/setup-emsdk@v11 | |
- name: Checkout ocen repo | |
uses: actions/checkout@v3 | |
with: | |
repository: ocen-lang/ocen | |
path: ocen | |
- name: Build ocen | |
run: | | |
cd ocen | |
./meta/bootstrap.sh | |
echo "OCEN_ROOT=${{ github.workspace }}/ocen" >> $GITHUB_ENV | |
echo "${{ github.workspace }}/ocen/bootstrap" >> $GITHUB_PATH | |
- name: Build Wasm | |
run: | | |
cd ${{ github.workspace }} | |
./meta/build_wasm.sh | |
./meta/multi_build_wasm.sh | |
- name: Deploy 🚀 | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages # The branch the action should deploy to. | |
folder: build |