From af069d3c8ad7677ab654767722aeae2a1af25b43 Mon Sep 17 00:00:00 2001 From: Vitor Hideyoshi Date: Mon, 2 Sep 2024 00:26:19 -0300 Subject: [PATCH] Adds Helm to Setup Step on CI/CD --- .github/workflows/deploy-prod.yml | 1 + .github/workflows/deploy-staging.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/deploy-prod.yml b/.github/workflows/deploy-prod.yml index 31a0abe..d1a7e2a 100644 --- a/.github/workflows/deploy-prod.yml +++ b/.github/workflows/deploy-prod.yml @@ -51,6 +51,7 @@ jobs: command_timeout: 30m script: | sudo apt update && sudo apt install -y jq + curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash source ~/.profile cd infra-hideyoshi.com ./deploy.sh --prod diff --git a/.github/workflows/deploy-staging.yml b/.github/workflows/deploy-staging.yml index 73ef29f..520ab1e 100644 --- a/.github/workflows/deploy-staging.yml +++ b/.github/workflows/deploy-staging.yml @@ -49,6 +49,7 @@ jobs: command_timeout: 30m script: | sudo apt update && sudo apt install -y jq + curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash source ~/.profile cd infra-hideyoshi.com ./deploy.sh --staging