Compare commits
15 Commits
363335831f
...
fa30038613
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fa30038613 | ||
|
|
e976138a77 | ||
|
|
670f83cce1 | ||
|
|
a6881a3a2b | ||
|
|
8931463cba | ||
|
|
b8fe3fd6c2 | ||
|
|
5034bddeb3 | ||
|
|
4f99ccfa06 | ||
|
|
6176298bf4 | ||
|
|
32ef7f19be | ||
|
|
f351ea1a01 | ||
|
|
ce8234f746 | ||
|
|
236561ed28 | ||
|
|
93ef12154c | ||
|
|
e0a7a9ac09 |
7
.github/workflows/build.yml
vendored
7
.github/workflows/build.yml
vendored
@ -1,7 +1,7 @@
|
|||||||
name: bluebuild
|
name: bluebuild
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "00 17 * * *" # build at 17:00 UTC every day
|
- cron: "00 06 * * *" # build at 06:00 UTC every day
|
||||||
# (20 minutes after last ublue images start building)
|
# (20 minutes after last ublue images start building)
|
||||||
push:
|
push:
|
||||||
paths-ignore: # don't rebuild if only documentation has changed
|
paths-ignore: # don't rebuild if only documentation has changed
|
||||||
@ -26,9 +26,12 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
# the build is fully handled by the reusable github action
|
# the build is fully handled by the reusable github action
|
||||||
- name: Build Custom Image
|
- name: Build Custom Image
|
||||||
uses: blue-build/github-action@v1.3
|
uses: blue-build/github-action@v1.6
|
||||||
with:
|
with:
|
||||||
recipe: ${{ matrix.recipe }}
|
recipe: ${{ matrix.recipe }}
|
||||||
cosign_private_key: ${{ secrets.SIGNING_SECRET }}
|
cosign_private_key: ${{ secrets.SIGNING_SECRET }}
|
||||||
registry_token: ${{ github.token }}
|
registry_token: ${{ github.token }}
|
||||||
pr_event_number: ${{ github.event.number }}
|
pr_event_number: ${{ github.event.number }}
|
||||||
|
|
||||||
|
# enabled by default, disable if your image is small and you want faster builds
|
||||||
|
maximize_build_space: true
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
# BlueBuild Template [](https://github.com/blue-build/template/actions/workflows/build.yml)
|
# BlueBuild Template [](https://github.com/blue-build/template/actions/workflows/build.yml)
|
||||||
|
|
||||||
See the [BlueBuild docs](https://blue-build.org/how-to/setup/) for quick setup instructions for setting up your own repository based on this template.
|
See the [BlueBuild docs](https://blue-build.org/how-to/setup/) for quick setup instructions for setting up your own repository based on this template.
|
||||||
|
|
||||||
|
|||||||
1
files/system/etc/.gitkeep
Normal file
1
files/system/etc/.gitkeep
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
||||||
@ -5,16 +5,15 @@ description: This is my personal OS image.
|
|||||||
|
|
||||||
# the base image to build on top of (FROM) and the version tag to use
|
# the base image to build on top of (FROM) and the version tag to use
|
||||||
base-image: ghcr.io/ublue-os/silverblue-main
|
base-image: ghcr.io/ublue-os/silverblue-main
|
||||||
image-version: 39 # latest is also supported if you want new updates ASAP
|
image-version: 40 # latest is also supported if you want new updates ASAP
|
||||||
|
|
||||||
# module configuration, executed in order
|
# module configuration, executed in order
|
||||||
# you can include multiple instances of the same module
|
# you can include multiple instances of the same module
|
||||||
modules:
|
modules:
|
||||||
- type: files
|
- type: files
|
||||||
files:
|
files:
|
||||||
- usr: /usr # copies config/files/usr into your image's /usr.
|
- source: system
|
||||||
# put configuration files you want in /etc/ on a booted system
|
destination: / # copies files/system/* (* means everything inside it) into your image's root folder /
|
||||||
# in /usr/etc/ in the image. read more in files module reference.
|
|
||||||
|
|
||||||
- type: rpm-ostree
|
- type: rpm-ostree
|
||||||
repos:
|
repos:
|
||||||
Loading…
x
Reference in New Issue
Block a user