Skip to content
This repository was archived by the owner on Oct 2, 2024. It is now read-only.

Commit 43188ac

Browse files
committed
fix: path
1 parent 132bd0f commit 43188ac

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ jobs:
3333
with:
3434
toolchain: nightly-2023-11-10
3535
components: rust-src
36+
- uses: actions/setup-python@v5
37+
with:
38+
python-version: '3.12'
3639
- name: Checkout
3740
uses: actions/checkout@v4
3841
with:
@@ -60,7 +63,9 @@ jobs:
6063
cd ironfish-rust-nodejs
6164
yalc publish
6265
- name: Build app
63-
run: make build
66+
run: |
67+
export PATH=/home/runner/.local/bin:$PATH
68+
make build
6469
- name: Install zemu deps
6570
run: |
6671
cd js

0 commit comments

Comments
 (0)