Skip to content

Commit

Permalink
chore: Added pulumi install in deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
Fgruntjes committed Mar 22, 2023
1 parent 6828f5f commit f353d9a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions App.Deploy/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ test -f .env.deploy.local && source .env.deploy.local
test -f .env.local && source .env.local
set +a

# Install Pulumi if not available
if ! command -v pulumi &> /dev/null
then
curl -fsSL https://get.pulumi.com | sh
fi

# Login to cloud
pulumi login "gs://${GOOGLE_PROJECT_ID}-pulumi"

Expand Down

0 comments on commit f353d9a

Please sign in to comment.