We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e0766c commit 0598c4aCopy full SHA for 0598c4a
vm/setup.sh
@@ -9,6 +9,7 @@ RUNNER_DIR="/home/${RUNNER_USER}"
9
RUNNER_VER=2.310.2
10
11
HELM_VERSION=3.12.1
12
+PULUMI_VERSION=3.89.0
13
14
DOCKER_USER_UID=33333
15
DOCKER_GROUP_GID=33333
@@ -121,6 +122,10 @@ curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key --keyring /
121
122
apt-get update
123
apt-get install -y google-cloud-cli
124
125
+echo "📝 Installing pulumi..."
126
+curl -fsSL https://get.pulumi.com/releases/sdk/pulumi-v${PULUMI_VERSION}-linux-x64.tar.gz | tar -xzvC /tmp/ --strip-components=1
127
+cp /tmp/pulumi /usr/local/bin/pulumi
128
+
129
echo "📝 Installing actions-runner..."
130
RUNNER_TGZ=/tmp/actions-runner-linux-x64-${RUNNER_VER}.tar.gz
131
0 commit comments