Skip to content

Commit 2c3f10a

Browse files
committed
ci: fix uv installation in release-wasm workflow
1 parent 1722df6 commit 2c3f10a

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/release-wasm.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,14 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v4
18-
- name: Install binaryen
19-
run: sudo apt-get update && sudo apt-get install -y binaryen
18+
- name: Set up Python
19+
uses: actions/setup-python@v5
20+
with:
21+
python-version: '3.11'
22+
- name: Install uv and binaryen
23+
run: |
24+
curl -LsSf https://astral.sh/uv/install.sh | sh
25+
sudo apt-get update && sudo apt-get install -y binaryen
2026
- name: Build WASM
2127
run: |
2228
if [ -f Makefile ] && grep -q build_wasm Makefile; then

0 commit comments

Comments
 (0)