We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1722df6 commit 2c3f10aCopy full SHA for 2c3f10a
1 file changed
.github/workflows/release-wasm.yml
@@ -15,8 +15,14 @@ jobs:
15
runs-on: ubuntu-latest
16
steps:
17
- uses: actions/checkout@v4
18
- - name: Install binaryen
19
- run: sudo apt-get update && sudo apt-get install -y binaryen
+ - name: Set up Python
+ 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
26
- name: Build WASM
27
run: |
28
if [ -f Makefile ] && grep -q build_wasm Makefile; then
0 commit comments