We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7555f4 commit 47ff07eCopy full SHA for 47ff07e
.github/workflows/local-network.yaml
@@ -40,10 +40,17 @@ jobs:
40
- name: Update path
41
run: echo "/home/runner/.aztec/bin" >> $GITHUB_PATH
42
43
- - name: Set Aztec version and start local network
+ - name: Set Aztec version
44
run: |
45
VERSION=${{ env.VERSION }} aztec-up
46
- aztec start --local-network &
+
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.VERSION }} aztecprotocol/aztec:latest
51
52
+ - name: Start local Aztec network
53
+ run: aztec start --local-network &
54
55
- name: Wait for local network to be ready
56
0 commit comments