Skip to content

Commit 9efe1b0

Browse files
authored
fix ci (#626)
1 parent 095ceeb commit 9efe1b0

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.github/actions/mobile-setup/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,6 @@ runs:
5252
run: |
5353
cd ${{ inputs.app_path }}
5454
corepack enable
55+
yarn set version 4.6.0
5556
yarn install
5657
yarn install-app:deploy

.github/actions/yarn-install/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ runs:
1515
shell: bash
1616
run: |
1717
corepack enable
18-
corepack prepare [email protected] --activate
18+
corepack prepare [email protected] --activate
19+
yarn set version 4.6.0
1920
2021
- name: Setup Node.js
2122
uses: actions/setup-node@v4

.github/workflows/artifacts.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ jobs:
4040

4141
- name: Install dependencies
4242
run: |
43-
npm i -g yarn && cd circuits && yarn
43+
corepack enable
44+
yarn set version 4.6.0
45+
cd circuits && yarn
4446
4547
- name: Setup Rust
4648
uses: dtolnay/rust-toolchain@stable
@@ -58,8 +60,8 @@ jobs:
5860
- name: Build cpp circuits
5961
run: |
6062
chmod +x circuits/scripts/build/build_cpp.sh && \
61-
./circuits/scripts/build/build_cpp.sh register &&
62-
./circuits/scripts/build/build_cpp.sh disclose &&
63+
./circuits/scripts/build/build_cpp.sh register &&
64+
./circuits/scripts/build/build_cpp.sh disclose &&
6365
./circuits/scripts/build/build_cpp.sh dsc
6466
6567
- name: Upload Artifact

0 commit comments

Comments
 (0)