Skip to content

Bump ublue-os/remove-unwanted-software from 7 to 8 #515

Bump ublue-os/remove-unwanted-software from 7 to 8

Bump ublue-os/remove-unwanted-software from 7 to 8 #515

Workflow file for this run

---
name: Build m2os
on: # yamllint disable-line rule:truthy
schedule:
- cron: "41 6 * * 0" # 6:41 UTC Sunday
- cron: "41 6 * * 1,2,3,4,5,6" # 6:41 UTC Monday-Saturday
push:
branches:
- main
pull_request:
branches:
- main
merge_group:
workflow_dispatch:
permissions:
contents: write
packages: write
id-token: write
jobs:
lint:
name: Lint Project
uses: ./.github/workflows/lint.yml
build-image:
name: Build Images
needs: [lint]
uses: ./.github/workflows/build-image.yml
secrets: inherit
strategy:
fail-fast: false
matrix:
image_flavor: ["Desktop", "Bazzite", "Server"]
with:
image_flavor: ${{ matrix.image_flavor }}
build-iso:
name: Build ISOs
uses: ./.github/workflows/build-iso.yml
secrets: inherit
needs: [build-image]
strategy:
fail-fast: false
matrix:
image_flavor: ["Desktop", "Bazzite"]
with:
image_flavor: ${{ matrix.image_flavor }}
create-release:
name: Create Release
needs: [build-iso]
uses: ./.github/workflows/create-release.yml