From fb95398fb5c2e8768175b8a4011dd229d93b1c11 Mon Sep 17 00:00:00 2001 From: Danny Canter Date: Thu, 1 Jan 2026 17:40:30 -0800 Subject: [PATCH] ci: Build for release (#465) --- .github/workflows/containerization-build-template.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/containerization-build-template.yml b/.github/workflows/containerization-build-template.yml index fd4d6d45..09d6f28a 100644 --- a/.github/workflows/containerization-build-template.yml +++ b/.github/workflows/containerization-build-template.yml @@ -51,15 +51,19 @@ jobs: if ! git diff --quiet ; then echo the following files require formatting or license headers: ; git diff --name-only ; false ; fi - name: Make containerization and docs - run: | + run: | make clean containerization docs tar cfz _site.tgz _site + env: + BUILD_CONFIGURATION: ${{ inputs.release && 'release' || 'debug' }} - name: Make vminitd image - run: | + run: | source /opt/swiftly/env.sh make -C vminitd swift linux-sdk make init + env: + BUILD_CONFIGURATION: ${{ inputs.release && 'release' || 'debug' }} - name: Test containerization run: |