Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: cedarling integration with tarp #10681

Merged
merged 3 commits into from
Jan 17, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
ci: fix dirs build-packages.yml
Signed-off-by: Mohammad Abudayyeh <47318409+moabu@users.noreply.github.com>
  • Loading branch information
moabu authored Jan 17, 2025
commit 5f875c338771972ea260d54d9c7fcee4ce6e243e
7 changes: 3 additions & 4 deletions .github/workflows/build-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -334,11 +334,10 @@ jobs:
TAG="0.0.0"
fi
wget https://github.com/${{ github.repository }}/releases/download/"${VER}"/cedarling_wasm_"${TAG}"_pkg.tar.gz -O cedarling_wasm.tar.gz
mkdir wasm
tar -xvf cedarling_wasm.tar.gz -C wasm
mkdir -p src/wasm
tar -xvf cedarling_wasm.tar.gz -C src/wasm
rm cedarling_wasm.tar.gz
git add wasm
ls wasm
ls src/wasm
# END Get the latest cedarling wasm package
npm install
npm run build
Expand Down
Loading