Skip to content

Commit

Permalink
fix: add helm (#10454)
Browse files Browse the repository at this point in the history
Please read [contributing guidelines](CONTRIBUTING.md) and remove this
line.
  • Loading branch information
alexghr authored Dec 6, 2024
1 parent 95601df commit 2eb9ade
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/devnet-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,13 @@ jobs:
gcloud components install kubectl gke-gcloud-auth-plugin --quiet
gcloud container clusters get-credentials ${{ env.CLUSTER_NAME }} --region ${{ env.REGION }}
- name: Setup helm
run: |
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
chmod +x get_helm.sh
sudo ./get_helm.sh
rm get_helm.sh
- name: Bootstrap network
run: |
set -eu -o pipefail
Expand Down Expand Up @@ -115,6 +122,7 @@ jobs:
sleep 5
docker run --rm $AZTEC_DOCKER_IMAGE bootstrap-network \
--network host \
--rpc-url http://127.0.0.1:$PXE_PORT \
--l1-rpc-url http://127.0.0.1:$ETHEREUM_PORT \
--l1-chain-id $CHAIN_ID \
Expand Down

0 comments on commit 2eb9ade

Please sign in to comment.