util: Make all runs "build" and "run"

Change-Id: If9ecf467efa5c7118d34166953630e6c436c55a4
This commit is contained in:
Bobby R. Bruce
2023-10-06 00:27:23 -07:00
parent 53219bf827
commit df3bcaf143

View File

@@ -59,7 +59,7 @@ Vagrant.configure("2") do |config|
runner.vm.provision "file", source: "./action-run.sh", destination: "/tmp/action-run.sh"
runner.vm.provision :shell, privileged: false, inline: "cp /tmp/action-run.sh ."
# Execute the actions-run.sh script on every boot. This configures the and starts the runner.
runner.vm.provision :shell, privileged: false, run: 'always', inline: "./action-run.sh #{PERSONAL_ACCESS_TOKEN} #{GITHUB_ORG} >> action-run.log 2>&1 &"
runner.vm.provision :shell, privileged: false, run: 'always', inline: "./action-run.sh #{PERSONAL_ACCESS_TOKEN} #{GITHUB_ORG} "run,build" >> action-run.log 2>&1 &"
end
end
end