Update build-live-iso.yml

This commit is contained in:
humocs-man
2026-03-10 21:42:56 +01:00
committed by GitHub
parent c8b267c818
commit 68a85194d2
+2 -12
View File
@@ -1,14 +1,4 @@
---
name: Build Stable ISOs name: Build Stable ISOs
# This workflow ONLY builds Stable ISOs (not LTS, LTS-HWE, or GTS)
# Builds: 2 Stable ISOs
# - amd64 × main
# - amd64 × nvidia-open
permissions:
contents: read
packages: read
id-token: write
on: on:
workflow_dispatch: workflow_dispatch:
inputs: inputs:
@@ -21,7 +11,7 @@ on:
type: boolean type: boolean
default: false default: false
#schedule: #schedule:
# - cron: '0 2 1 * *' # 2am UTC on the 1st of every month #- cron: '0 2 1 * *'
jobs: jobs:
build-iso-stable: build-iso-stable:
@@ -29,7 +19,7 @@ jobs:
uses: ./.github/workflows/reusable-build-iso-anaconda.yml uses: ./.github/workflows/reusable-build-iso-anaconda.yml
secrets: inherit secrets: inherit
with: with:
image_version: stable # Strictly builds Stable ISOs only image_version: stable
image_tag: stable image_tag: stable
upload_artifacts: ${{ github.event_name == 'workflow_dispatch' && inputs.upload_artifacts || false }} upload_artifacts: ${{ github.event_name == 'workflow_dispatch' && inputs.upload_artifacts || false }}
upload_r2: ${{ github.event_name == 'workflow_dispatch' && inputs.upload_r2 || true }} upload_r2: ${{ github.event_name == 'workflow_dispatch' && inputs.upload_r2 || true }}