Skip to content

Commit 47f8ab0

Browse files
critesjoshclaude
andcommitted
chore: update workflow to use new aztec install method for 4.0.0-nightly
- Update AZTEC_VERSION to 4.0.0-nightly.20260204 - Use new install script format: VERSION=X bash -i <(curl -sL ...) - Remove deprecated v3 workarounds (separate aztec-up call, docker tagging) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 70e6096 commit 47f8ab0

1 file changed

Lines changed: 2 additions & 12 deletions

File tree

.github/workflows/local-network.yaml

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
env:
1919
AZTEC_ENV: local-network
20-
AZTEC_VERSION: 3.0.0-devnet.6-patch.1
20+
AZTEC_VERSION: 4.0.0-nightly.20260204
2121

2222
steps:
2323
- name: Checkout repository
@@ -34,21 +34,11 @@ jobs:
3434

3535
- name: Install Aztec CLI
3636
run: |
37-
curl -s https://install.aztec.network > tmp.sh
38-
bash tmp.sh <<< yes "yes"
37+
VERSION=${{ env.AZTEC_VERSION }} bash -i <(curl -sL https://install.aztec.network/${{ env.AZTEC_VERSION }})
3938
4039
- name: Update path
4140
run: echo "/home/runner/.aztec/bin" >> $GITHUB_PATH
4241

43-
- name: Set Aztec version
44-
run: |
45-
VERSION=${{ env.AZTEC_VERSION }} aztec-up
46-
47-
# This is a temporary hack to fix a problem with v3 releases.
48-
- name: Manually tag the aztec version as `latest`
49-
run: |
50-
docker tag aztecprotocol/aztec:${{ env.AZTEC_VERSION }} aztecprotocol/aztec:latest
51-
5242
- name: Start local Aztec network
5343
run: aztec start --local-network &
5444

0 commit comments

Comments
 (0)