From e19725fcbec1f33387e1e795970ed961eddc9801 Mon Sep 17 00:00:00 2001 From: Aleksandr Chebotov <47745270+al-cheb@users.noreply.github.com> Date: Wed, 10 Aug 2022 15:51:15 +0200 Subject: [PATCH] Replace virtual-environments to runner images (#6050) --- docs/create-image-and-azure-resources.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/create-image-and-azure-resources.md b/docs/create-image-and-azure-resources.md index 090b39808..8b56129de 100644 --- a/docs/create-image-and-azure-resources.md +++ b/docs/create-image-and-azure-resources.md @@ -1,4 +1,4 @@ -# Virtual-Environments +# GitHub Actions Runner Images The runner-images project uses [Packer](https://www.packer.io/) to generate disk images for the following platforms: Windows 2019/2022, Ubuntu 18.04/20.04/22.04. Each image is configured through a JSON template that Packer understands and which specifies where to build the image (Azure in this case), and what scripts to run to install software and prepare the disk. The Packer process initializes a connection to Azure subscription via Azure CLI, and automatically creates the temporary Azure resources required to build the source VM(temporary resource group, network interfaces, and VM from the "clean" image specified in the template). @@ -47,7 +47,7 @@ Install Azure CLI - https://docs.microsoft.com/en-us/cli/azure/install-azure-cli Invoke-WebRequest -Uri https://aka.ms/installazurecliwindows -OutFile .\AzureCLI.msi; Start-Process msiexec.exe -Wait -ArgumentList '/I AzureCLI.msi /quiet'; rm .\AzureCLI.msi ``` -Download Virtual-Environments repository. +Download Runner Images repository. ``` Set-Location c:\ git clone https://github.com/actions/runner-images.git