We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd01c45 commit 4d09608Copy full SHA for 4d09608
1 file changed
.github/workflows/plan.yaml
@@ -48,11 +48,14 @@ jobs:
48
backend_config: bucket=${{ env.STATE_BUCKET_NAME }} key=${{ env.STATE_BUCKET_KEY }}
49
env:
50
TERRAFORM_PRE_RUN: |
51
+ # Install prerequisites
52
+ apt install -y lsb-release
53
+
54
# Install latest Packer
55
wget -O - https://apt.releases.hashicorp.com/gpg | gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg
56
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(grep -oP '(?<=UBUNTU_CODENAME=).*' /etc/os-release || lsb_release -cs) main" | tee /etc/apt/sources.list.d/hashicorp.list
57
apt update
- apt install packer
58
+ apt install -y packer
59
60
# Install latest Talosctl
61
curl -sL https://talos.dev/install | sh
0 commit comments