-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (45 loc) · 1.36 KB
/
build-wasm.yml
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: "build_wasm"
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v3
- name: Install Wasm-pack
run: |
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- name: Install node
uses: actions/setup-node@v3
with:
node-version: "20.15.x"
- name: Install rollup
run: |
npm install --global [email protected]
- name: Build
working-directory: aptos-wasm
run: |
echo "Directory structure before build:"
ls -R
for dir in ./*/; do
if [ -d "$dir" ]; then
echo "Building in directory: $dir"
(cd "$dir" && wasm-pack build --release --target web -d pkg) || {
echo "Build failed in directory: $dir"
exit 1
}
else
echo "No subdirectories found in aptos-wasm"
fi
done
- name: Generate npm pkg
run: |
ls -R ./aptos-wasm
chmod +x ./gen-npm-pkg.sh
./gen-npm-pkg.sh
# - name: Publish to npm
# working-directory: aptos-wasm
# run: |
# npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_ACCESS_TOKEN }}
# npm publish pkg/ --access public