Feature/mac fat bin (#464) #854
Workflow file for this run
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: Emscripten Build | |
on: | |
push: | |
branches: | |
- main | |
- feature/* | |
- bugfix/* | |
- develop | |
pull_request: | |
branches: [ develop ] | |
jobs: | |
build: | |
if: true | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: update submodules | |
run: git submodule update --init --recursive --remote | |
- name: install emscripten | |
run: git clone https://github.com/emscripten-core/emsdk.git && cd emsdk && ./emsdk install 3.1.23 && ./emsdk activate 3.1.23 | |
working-directory: third_party | |
- name: configure | |
run: source ../third_party/emsdk/emsdk_env.sh && emcmake cmake -DCMAKE_BUILD_TYPE=Release .. | |
working-directory: build | |
env: | |
BUILD_NR: ${{ github.run_number }} | |
- name: build | |
run: cmake --build . | |
working-directory: build | |
- name: pack | |
run: cpack -G ZIP | |
working-directory: build | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: werckmeister-linux-${{ github.sha }} | |
path: build/werckmeister-*-Emscripten.zip | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 14 | |
- name: Publish | |
run: | | |
unzip werckmeister-*-Emscripten.zip | |
cd werckmeister-*-Emscripten | |
npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN} | |
npm publish --ignore-scripts --access=public | |
working-directory: build | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |