mirror of
https://github.com/mvallim/live-custom-ubuntu-from-scratch.git
synced 2025-08-01 16:40:21 +00:00
Add build automation to generate jammy ISO
This commit is contained in:
22
.github/workflows/build-jammy.yml
vendored
Normal file
22
.github/workflows/build-jammy.yml
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
name: build-jammy
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-22.04
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
cd scripts
|
||||
sed -i -E 's/TARGET_UBUNTU_VERSION=(.*)/TARGET_UBUNTU_VERSION="jammy"/g' default_config.sh
|
||||
sed -i -E '/lupin-casper/d' chroot_build.sh
|
||||
./build.sh -
|
Reference in New Issue
Block a user