Skip to content

Commit bf81343

Browse files
committed
live iso workflow only runs after Build bootc images runs on main, so it doesnt run in this pr, try to make it run on push temporarily to test
1 parent a52e836 commit bf81343

1 file changed

Lines changed: 6 additions & 14 deletions

File tree

.github/workflows/build-iso.yml

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,28 +8,26 @@ on:
88
schedule:
99
- cron: "0 4 * * *" # every day at 4am UTC
1010
workflow_dispatch:
11-
workflow_run:
12-
workflows: ["Build Image"]
13-
types:
14-
- completed
11+
# workflow_run:
12+
# workflows: ["Build bootc images"]
13+
# types:
14+
# - completed
15+
push:
1516

1617
concurrency:
1718
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
1819
cancel-in-progress: true
1920

2021
jobs:
2122
build-iso:
22-
# idk if this needs this instead of write-all at the top
23-
# permissions:
24-
# contents: write
25-
# packages: write
2623
strategy:
2724
fail-fast: false
2825
matrix:
2926
arch: [x86_64, aarch64]
3027
variant:
3128
- name: nothing
3229
image: ghcr.io/ultramarine-linux/nothing-bootc:${{ github.ref_name || 'main' }}
30+
3331
name: Build ISO images with katsu
3432
runs-on: ${{ contains(matrix.arch, 'aarch64') && 'ubuntu-24.04-arm' || 'ubuntu-24.04' }}
3533

@@ -60,12 +58,6 @@ jobs:
6058
echo "After cleanup:"
6159
df -h
6260
63-
# - name: Install dependencies
64-
# run: |
65-
# dnf install -y just
66-
67-
# Dont need just? Maybe just make it run the katsu thing here directly? Shouldnt be as complex as the bootc workflow?
68-
#
6961
- name: Build live ISO with Katsu
7062
run: |
7163
# set -x prints all commands to terminal

0 commit comments

Comments
 (0)