Compare commits
16 Commits
49-bug-new
...
dependabot
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cec9538649 | ||
|
|
95a4a814aa | ||
|
|
6ae791be0e | ||
|
|
b4ad163d9c | ||
|
|
d3f382af4c | ||
|
|
4db2e0648c | ||
|
|
ac4d788d52 | ||
|
|
f8d94ca365 | ||
|
|
d7ef50a332 | ||
|
|
da75518353 | ||
|
|
e6b1f98ac4 | ||
|
|
2913ceec6e | ||
|
|
5cdcd18c35 | ||
|
|
b4d47c3b1c | ||
|
|
0f5f896a76 | ||
|
|
309b9160db |
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@@ -31,7 +31,7 @@ jobs:
|
||||
steps:
|
||||
# the build is fully handled by the reusable github action
|
||||
- name: Build Custom Image
|
||||
uses: blue-build/github-action@v1.8
|
||||
uses: blue-build/github-action@v1.12
|
||||
with:
|
||||
recipe: ${{ matrix.recipe }}
|
||||
cosign_private_key: ${{ secrets.SIGNING_SECRET }}
|
||||
|
||||
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,3 +1,5 @@
|
||||
cosign.key
|
||||
cosign.private
|
||||
/Containerfile
|
||||
*.iso
|
||||
*.iso-CHECKSUM
|
||||
|
||||
2
LICENSE
2
LICENSE
@@ -186,7 +186,7 @@
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright [yyyy] [name of copyright owner]
|
||||
Copyright 2024-2026 BlueBuild contributors
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
|
||||
@@ -32,7 +32,7 @@ The `latest` tag will automatically point to the latest build. That build will s
|
||||
|
||||
## ISO
|
||||
|
||||
If build on Fedora Atomic, you can generate an offline ISO with the instructions available [here](https://blue-build.org/learn/universal-blue/#fresh-install-from-an-iso). These ISOs cannot unfortunately be distributed on GitHub for free due to large sizes, so for public projects something else has to be used for hosting.
|
||||
If build on Fedora Atomic, you can generate an offline ISO with the instructions available [here](https://blue-build.org/how-to/generate-iso/#_top). These ISOs cannot unfortunately be distributed on GitHub for free due to large sizes, so for public projects something else has to be used for hosting.
|
||||
|
||||
## Verification
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ description: This is my personal OS image.
|
||||
|
||||
# the base image to build on top of (FROM) and the version tag to use
|
||||
base-image: ghcr.io/ublue-os/silverblue-main
|
||||
image-version: 41 # latest is also supported if you want new updates ASAP
|
||||
image-version: 42 # latest is also supported if you want new updates ASAP
|
||||
|
||||
# module configuration, executed in order
|
||||
# you can include multiple instances of the same module
|
||||
@@ -17,28 +17,29 @@ modules:
|
||||
- source: system
|
||||
destination: / # copies files/system/* (* means everything inside it) into your image's root folder /
|
||||
|
||||
- type: rpm-ostree
|
||||
- type: dnf
|
||||
repos:
|
||||
- https://copr.fedorainfracloud.org/coprs/atim/starship/repo/fedora-%OS_VERSION%/atim-starship-fedora-%OS_VERSION%.repo
|
||||
copr:
|
||||
- atim/starship
|
||||
install:
|
||||
- micro
|
||||
- starship
|
||||
packages:
|
||||
- micro
|
||||
- starship
|
||||
remove:
|
||||
# example: removing firefox (in favor of the flatpak)
|
||||
# "firefox" is the main package, "firefox-langpacks" is a dependency
|
||||
- firefox
|
||||
- firefox-langpacks # also remove firefox dependency (not required for all packages, this is a special case)
|
||||
packages:
|
||||
# example: removing firefox (in favor of the flatpak)
|
||||
# "firefox" is the main package, "firefox-langpacks" is a dependency
|
||||
- firefox
|
||||
- firefox-langpacks # also remove firefox dependency (not required for all packages, this is a special case)
|
||||
|
||||
- type: default-flatpaks
|
||||
notify: true # Send notification after install/uninstall is finished (true/false)
|
||||
system:
|
||||
# If no repo information is specified, Flathub will be used by default
|
||||
install:
|
||||
- org.mozilla.firefox
|
||||
- org.gnome.Loupe
|
||||
remove:
|
||||
- org.gnome.eog
|
||||
user: {} # Also add Flathub user repo, but no user packages
|
||||
configurations:
|
||||
- notify: true # Send notification after install/uninstall is finished (true/false)
|
||||
scope: system
|
||||
# If no repo information is specified, Flathub will be used by default
|
||||
install: # system flatpaks we want all users to have and not remove
|
||||
- org.mozilla.firefox
|
||||
- org.gnome.Loupe
|
||||
- scope: user # Also add Flathub user repo, but no user packages
|
||||
|
||||
- type: signing # this sets up the proper policy & signing files for signed images to work fully
|
||||
|
||||
|
||||
Reference in New Issue
Block a user