Closed bdunne closed 1 year ago
.github/workflows/build_appliances.yaml
scripts/uploader.rb
ENV.fetch("S3_ACCESS_KEY")
or ENV.fetch("S3_ACCESS_KEY", nil)
instead of ENV["S3_ACCESS_KEY"]
.ENV.fetch("S3_SECRET_KEY")
or ENV.fetch("S3_SECRET_KEY", nil)
instead of ENV["S3_SECRET_KEY"]
.ENV.fetch("S3_ENDPOINT")
or ENV.fetch("S3_ENDPOINT", nil)
instead of ENV["S3_ENDPOINT"]
.scripts/vmbuild.rb
ENV.fetch('GITHUB_RUN_ID')
or ENV.fetch('GITHUB_RUN_ID', nil)
instead of ENV['GITHUB_RUN_ID']
.Backported to petrosian
in commit 13e4e5262bd0205b855731b6d282fbbb01860ce2.
commit 13e4e5262bd0205b855731b6d282fbbb01860ce2
Author: Jason Frey <fryguy9@gmail.com>
Date: Wed Jun 21 14:14:22 2023 -0400
Merge pull request #551 from bdunne/actions_appliance_build
Split appliance build jobs and run in parallel
(cherry picked from commit deefbd9727f2fe4ef976bae69f93fea52f2c94eb)