mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 06:08:07 +00:00
[Ubuntu] Fix software report download directory (#8814)
This commit is contained in:
committed by
GitHub
parent
f2a3cad69a
commit
f78a7baa80
@@ -350,13 +350,13 @@
|
|||||||
{
|
{
|
||||||
"type": "file",
|
"type": "file",
|
||||||
"source": "{{user `image_folder`}}/software-report.md",
|
"source": "{{user `image_folder`}}/software-report.md",
|
||||||
"destination": "{{template_dir}}/Ubuntu2004-Readme.md",
|
"destination": "{{template_dir}}/../Ubuntu2004-Readme.md",
|
||||||
"direction": "download"
|
"direction": "download"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "file",
|
"type": "file",
|
||||||
"source": "{{user `image_folder`}}/software-report.json",
|
"source": "{{user `image_folder`}}/software-report.json",
|
||||||
"destination": "{{template_dir}}/software-report.json",
|
"destination": "{{template_dir}}/../software-report.json",
|
||||||
"direction": "download"
|
"direction": "download"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -390,13 +390,13 @@ build {
|
|||||||
}
|
}
|
||||||
|
|
||||||
provisioner "file" {
|
provisioner "file" {
|
||||||
destination = "${path.root}/Ubuntu2204-Readme.md"
|
destination = "${path.root}/../Ubuntu2204-Readme.md"
|
||||||
direction = "download"
|
direction = "download"
|
||||||
source = "${var.image_folder}/software-report.md"
|
source = "${var.image_folder}/software-report.md"
|
||||||
}
|
}
|
||||||
|
|
||||||
provisioner "file" {
|
provisioner "file" {
|
||||||
destination = "${path.root}/software-report.json"
|
destination = "${path.root}/../software-report.json"
|
||||||
direction = "download"
|
direction = "download"
|
||||||
source = "${var.image_folder}/software-report.json"
|
source = "${var.image_folder}/software-report.json"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user