From 929bf0af5654da65bae4637316db7e99cbfd729f Mon Sep 17 00:00:00 2001 From: Graeme Meyer <107847353+GraemeMeyerGT@users.noreply.github.com> Date: Thu, 10 Aug 2023 10:59:19 +0100 Subject: [PATCH] Fix typo --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0f819edd..f0b5127b 100644 --- a/README.md +++ b/README.md @@ -145,7 +145,7 @@ jobs: & 'c:\workflow-artifacts\webApp\webconfig.ps1' ``` -The above workflow will use a Microsoft Windows Server platform image as base image, inject files present in directory `${{ GITHUB.WORKSPACE }}/worflow-artifacts` of GitHub runner into the base image at default `customizer-destination` directory and run image customizations(E.g. Set up IIS web server, configure bindings etc) using script webconfig.ps1, finally it will distribute the baked custom image as a Managed Image(default distribution) +The above workflow will use a Microsoft Windows Server platform image as base image, inject files present in directory `${{ GITHUB.WORKSPACE }}/workflow-artifacts` of GitHub runner into the base image at default `customizer-destination` directory and run image customizations(E.g. Set up IIS web server, configure bindings etc) using script webconfig.ps1, finally it will distribute the baked custom image as a Managed Image(default distribution) ### Sample workflow to create a custom Ubuntu OS image and distribute it as Managed Image @@ -164,7 +164,7 @@ jobs: - name: Create Workflow Artifacts run: | cd "$GITHUB_WORKFLOW" - mkdir worflow-artifacts/ + mkdir workflow-artifacts/ echo "echo Installing World... " > $GITHUB_WORKSPACE/workflow-artifacts/install-world.sh # You can have your own installation script here @@ -190,7 +190,7 @@ jobs: ``` -The above workflow will use a linux platform image as base image, inject files present in directory `${{ GITHUB.WORKSPACE }}/worflow-artifacts` of GitHub runner into the base image at default `customizer-destination` directory and run install-world.sh script. Finally it will distribute the baked custom image as a Managed Image(default distribution) +The above workflow will use a linux platform image as base image, inject files present in directory `${{ GITHUB.WORKSPACE }}/workflow-artifacts` of GitHub runner into the base image at default `customizer-destination` directory and run install-world.sh script. Finally it will distribute the baked custom image as a Managed Image(default distribution) ### Sample workflow to create a custom Ubuntu OS image and distribute through Shared Image Gallery @@ -231,7 +231,7 @@ jobs: ``` -The above workflow will use a linux platform image as base image, inject files present in directory `${{ GITHUB.WORKSPACE }}/worflow-artifacts` of GitHub runner into the base image at default `customizer-destination` directory and run install.sh script. Finally it will distribute the baked custom image through Shared Image Gallery +The above workflow will use a linux platform image as base image, inject files present in directory `${{ GITHUB.WORKSPACE }}/workflow-artifacts` of GitHub runner into the base image at default `customizer-destination` directory and run install.sh script. Finally it will distribute the baked custom image through Shared Image Gallery ### Snippet to spin up a virtual machine from custom image