30 lines
626 B
YAML
30 lines
626 B
YAML
name: build-noble
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Build
|
|
run: |
|
|
cd scripts
|
|
sed -i -E 's/TARGET_UBUNTU_VERSION=(.*)/TARGET_UBUNTU_VERSION="noble"/g' default_config.sh
|
|
./build.sh -
|
|
cd ..
|
|
- name: Archive artifacts
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: ubuntu-from-scratch
|
|
path: |
|
|
scripts/ubuntu-from-scratch.iso
|
|
scripts/image/md5sum.txt
|