-
Notifications
You must be signed in to change notification settings - Fork 1
38 lines (36 loc) · 975 Bytes
/
release.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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