Skip to content

Commit 143e78c

Browse files
critesjoshclaude
andcommitted
Fix CI: pass VERSION to Aztec install script
The install script was trying to pull aztecprotocol/aztec:latest which doesn't exist. Now passes VERSION env var so it pulls the correct version. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 8159a95 commit 143e78c

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/note-send-proof-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Install Aztec CLI
3939
run: |
4040
curl -s https://install.aztec.network > tmp.sh
41-
NON_INTERACTIVE=1 bash tmp.sh
41+
VERSION=${{ env.AZTEC_VERSION }} NON_INTERACTIVE=1 bash tmp.sh
4242
rm tmp.sh
4343
4444
- name: Update path

.github/workflows/prediction-market-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Install Aztec CLI
4141
run: |
4242
curl -s https://install.aztec.network > tmp.sh
43-
NON_INTERACTIVE=1 bash tmp.sh
43+
VERSION=${{ env.AZTEC_VERSION }} NON_INTERACTIVE=1 bash tmp.sh
4444
rm tmp.sh
4545
4646
- name: Update path

.github/workflows/recursive-verification-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Install Aztec CLI
4141
run: |
4242
curl -s https://install.aztec.network > tmp.sh
43-
NON_INTERACTIVE=1 bash tmp.sh
43+
VERSION=${{ env.AZTEC_VERSION }} NON_INTERACTIVE=1 bash tmp.sh
4444
rm tmp.sh
4545
4646
- name: Update path

.github/workflows/test-wallet-webapp-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Install Aztec CLI
3838
run: |
3939
curl -s https://install.aztec.network > tmp.sh
40-
NON_INTERACTIVE=1 bash tmp.sh
40+
VERSION=${{ env.AZTEC_VERSION }} NON_INTERACTIVE=1 bash tmp.sh
4141
rm tmp.sh
4242
4343
- name: Update path

0 commit comments

Comments
 (0)