vm-under-test/customize-vm: Refactor boot script #25
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build VM ContainerDisk | |
on: | |
pull_request: | |
branches: | |
- main | |
- 'release-**' | |
paths: | |
- 'vms/image-builder/**' | |
- 'vms/vm-under-test/**' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build_containerDisk_image: | |
name: Build VM ContainerDisk Image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Build the ContainerDisk image | |
run: make build-vm-container-disk |