bump spec version #79
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: Build cherry-runtime WASM | |
on: | |
push: | |
branches: | |
- cherry | |
- cherry-testnet | |
jobs: | |
build_wasm: | |
name: Build WASM cherry-runtime | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install latest nightly | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
override: false | |
components: rustfmt, clippy | |
target: wasm32-unknown-unknown | |
- run: sh scripts/build-only-wasm.sh cherry-runtime | |
- name: Archive wasm artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: WASM build | |
path: target/release/wbuild/cherry-runtime/*.wasm |