Skip to content

Commit e8c6eca

Browse files
committed
feat: enable secureboot
1 parent ff61940 commit e8c6eca

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/build-noble.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: build-jammy
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
workflow_dispatch:
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v2
16+
17+
- name: Build
18+
run: |
19+
cd scripts
20+
sed -i -E 's/TARGET_UBUNTU_VERSION=(.*)/TARGET_UBUNTU_VERSION="noble"/g' default_config.sh
21+
./build.sh -
22+
cd ..
23+
- name: Archive artifacts
24+
uses: actions/upload-artifact@v3
25+
with:
26+
name: ubuntu-from-scratch
27+
path: |
28+
scripts/ubuntu-from-scratch.iso
29+
scripts/image/md5sum.txt

0 commit comments

Comments
 (0)