We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74cfa51 commit ec497a2Copy full SHA for ec497a2
.github/workflows/packer-build.yml
@@ -8,6 +8,7 @@ on:
8
paths:
9
- "images/**"
10
- ".github/workflows/packer-build.yml"
11
+ - "module/runners/templates/**"
12
13
env:
14
AWS_REGION: eu-west-1
images/linux-amzn2/github_agent.linux.pkr.hcl
@@ -102,6 +102,7 @@ build {
102
install_runner = templatefile("../../modules/runners/templates/install-runner.sh", {
103
ARM_PATCH = ""
104
S3_LOCATION_RUNNER_DISTRIBUTION = ""
105
+ RUNNER_ARCHITECTURE = "x64"
106
})
107
108
destination = "/tmp/install-runner.sh"
@@ -113,7 +114,7 @@ build {
113
114
]
115
inline = [
116
"sudo chmod +x /tmp/install-runner.sh",
- "sudo RUNNER_TARBALL_URL=$RUNNER_TARBALL_URL /tmp/install-runner.sh"
117
+ "sudo RUNNER_ARCHITECTURE=x64 RUNNER_TARBALL_URL=$RUNNER_TARBALL_URL /tmp/install-runner.sh"
118
119
}
120
0 commit comments