Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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


Expand All @@ -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
Expand Down Expand Up @@ -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

Expand Down