Skip to content

Commit a6a4cd3

Browse files
committed
fix: update environment variable naming for Aztec version in local network workflow
1 parent 46c0a9a commit a6a4cd3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/local-network.yaml

Lines changed: 4 additions & 4 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-
VERSION: 3.0.0-devnet.20251212
20+
AZTEC_VERSION: 3.0.0-devnet.20251212
2121

2222
steps:
2323
- name: Checkout repository
@@ -30,7 +30,7 @@ jobs:
3030
cache: "yarn"
3131

3232
- name: Set up Docker
33-
uses: docker/setup-buildx-action@v2
33+
uses: docker/setup-buildx-action@v3
3434

3535
- name: Install Aztec CLI
3636
run: |
@@ -42,12 +42,12 @@ jobs:
4242

4343
- name: Set Aztec version
4444
run: |
45-
VERSION=${{ env.VERSION }} aztec-up
45+
VERSION=${{ env.AZTEC_VERSION }} aztec-up
4646
4747
# This is a temporary hack to fix a problem with v3 releases.
4848
- name: Manually tag the aztec version as `latest`
4949
run: |
50-
docker tag aztecprotocol/aztec:${{ env.VERSION }} aztecprotocol/aztec:latest
50+
docker tag aztecprotocol/aztec:${{ env.AZTEC_VERSION }} aztecprotocol/aztec:latest
5151
5252
- name: Start local Aztec network
5353
run: aztec start --local-network &

0 commit comments

Comments
 (0)