Change workflow order. #3
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: Release Artifacts | |
on: | |
push: | |
tags: | |
- "v*.*.*" | |
#env: | |
#BUCKET: ${{ vars.RELEASE_BUCKET }} | |
#RELEASES_CLOUDFRONT_ID: ${{ vars.RELEASES_CLOUDFRONT_ID }} | |
jobs: | |
release-artifacts: | |
#if: ${{ false }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Enable corepack | |
run: corepack enable | |
- name: Install dependencies | |
run: yarn install | |
- name: Install wasm-pack | |
run: cargo install wasm-pack | |
- name: Compile webassembly bindings | |
run: cd sdk/bindings && wasm-pack build --target web --scope mpc-sdk | |
- name: Check types | |
run: yarn types | |
- name: Build snap package archive | |
run: npm pack | |
#- name: Release | |
#uses: softprops/action-gh-release@v1 | |
#with: | |
#generate_release_notes: true | |
#files: | | |
#target/artifacts/* | |
#LICENSE | |
#COPYRIGHT |