From 09698b80ab6715a809dbfc3a2ed3f7ddd5bd3d9e Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Sat, 14 Jan 2023 06:33:48 +0000 Subject: [PATCH] Fix WASM CI build due to Actions being trash --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 72537f94..0e2db3fa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -47,6 +47,7 @@ jobs: - name: Rebuild C bindings without STD run: | cd ldk-c-bindings + git config --global safe.directory "*" ./genbindings.sh ../rust-lightning false - name: Build and Test TS Debug Bindings for Node run: | @@ -75,6 +76,7 @@ jobs: run: | export HOME=/root/ # Github actions is apparently broken export PATH=$(pwd)/$(echo node-*/bin):$PATH + git config --global safe.directory "*" ./genbindings.sh ./ldk-c-bindings/ wasm true true cd ts rm liblightningjs.wasm && ln -s $(pwd)/../liblightningjs_debug.wasm ./liblightningjs.wasm -- 2.30.2