We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1551bdf commit 2e378eaCopy full SHA for 2e378ea
1 file changed
.github/workflows/deploy.yml
@@ -36,19 +36,19 @@ jobs:
36
- name: Install dependencies
37
run: yarn install --immutable
38
39
+ - name: Set Aztec version
40
+ run: |
41
+ VERSION=$(jq -r '.dependencies["@aztec/aztec.js"]' package.json)
42
+ aztec-up install $VERSION
43
+
44
- name: Install Aztec CLI
45
run: |
- curl -s https://install.aztec-labs.com > tmp.sh
46
+ curl -s https://install.aztec.network/4.0.0-nightly.20260126/ > tmp.sh
47
bash tmp.sh <<< yes "yes"
48
49
- name: Update path
50
run: echo "/home/runner/.aztec/bin" >> $GITHUB_PATH
51
- - name: Set Aztec version
- run: |
- VERSION=$(jq -r '.dependencies["@aztec/aztec.js"]' package.json)
- aztec-up install $VERSION
-
52
- name: Compile contracts
53
run: yarn compile:contracts
54
0 commit comments