diff --git a/.github/workflows/build-live-iso.yml b/.github/workflows/build-live-iso.yml index e9e8a9e..dcd0fb6 100644 --- a/.github/workflows/build-live-iso.yml +++ b/.github/workflows/build-live-iso.yml @@ -1,14 +1,4 @@ ---- 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: workflow_dispatch: inputs: @@ -20,8 +10,8 @@ on: description: 'Upload ISOs to Cloudflare R2' type: boolean default: false - # schedule: - # - cron: '0 2 1 * *' # 2am UTC on the 1st of every month + #schedule: + #- cron: '0 2 1 * *' jobs: build-iso-stable: @@ -29,7 +19,7 @@ jobs: uses: ./.github/workflows/reusable-build-iso-anaconda.yml secrets: inherit with: - image_version: stable # Strictly builds Stable ISOs only + image_version: stable image_tag: stable upload_artifacts: ${{ github.event_name == 'workflow_dispatch' && inputs.upload_artifacts || false }} upload_r2: ${{ github.event_name == 'workflow_dispatch' && inputs.upload_r2 || true }}