Skip to content

Attempt to make video capture of build sessions #70

Attempt to make video capture of build sessions

Attempt to make video capture of build sessions #70

Workflow file for this run

name: Build NAV appliance
on: [push, pull_request, workflow_dispatch]
jobs:
packer:
name: "Build appliance using Packer"
runs-on: macos-12
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install virtualbox plugin
run: |
packer plugins install github.com/hashicorp/virtualbox
- name: Validate Template
run: |
packer validate bullseye.json
env:
PACKER_LOG: 1
- name: Build Artifact
run: |
packer build bullseye.json
ls -la
env:
PACKER_LOG: 1
- name: Upload video artifact
uses: actions/upload-artifact@v2
with:
name: video
path: |
**/*.webm
- name: Upload appliance artifact
uses: actions/upload-artifact@v2
with:
name: navappliance
path: |
navappliance/**/*