Skip to content
This repository was archived by the owner on Apr 22, 2024. It is now read-only.

Commit e36da20

Browse files
noelmillerp5
andauthored
fix: missed \ and updated README (#34)
* fix: missed \ * fix: moved variables into table and added EXTRA_BOOT_PARAMS * Update README.md Co-authored-by: Robert Sturla <[email protected]> --------- Co-authored-by: Robert Sturla <[email protected]>
1 parent ff58b2d commit e36da20

File tree

2 files changed

+14
-23
lines changed

2 files changed

+14
-23
lines changed

README.md

Lines changed: 13 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -29,28 +29,19 @@ docker run --rm --privileged --volume .:/isogenerator/output -e VERSION=39 -e IM
2929
## Customizing
3030
The following variables can be used to customize the create image.
3131

32-
- ARCH
33-
Architecture for image to build
34-
Default Value: x86_64
35-
- VERSION
36-
Fedora version of installer to build
37-
Default Value: 39
38-
- IMAGE_REPO
39-
Repository containing the source container image
40-
Default Value: ghcr.io/ublue-os
41-
- IMAGE_NAME
42-
Name of the source container image
43-
Default Value: base-main
44-
- IMAGE_TAG
45-
Tag of the source container image
46-
Default Value: *VERSION*
47-
- VARIANT
48-
Source container variant
49-
Available options can be found by running `dnf provides system-release`. Variant will be the third item in the package name. Example: `fedora-release-kinoite-39-34.noarch` will be kinonite
50-
Default Value: Silverblue
51-
- WEB_UI
52-
Enable Anaconda WebUI
53-
Default Value: false
32+
| Variable | Description | Default Value |
33+
| ----------------- | -------------------------------------------------------- | ---------------------- |
34+
| ARCH | Architecture for image to build | x86_64 |
35+
| VERSION | Fedora version of installer to build | 39 |
36+
| IMAGE_REPO | Repository containing the source container image | ghcr.io/ublue-os |
37+
| IMAGE_NAME | Name of the source container image | base-main |
38+
| IMAGE_TAG | Tag of the source container image | *VERSION* |
39+
| EXTRA_BOOT_PARAMS | Extra params used by grub to boot the anaconda installer | \[empty\] |
40+
| VARIANT | Source container variant\* | Kinoite |
41+
| WEB_UI | Enable Anaconda WebUI (experimental) | false |
42+
43+
Available options for VARIANT can be found by running `dnf provides system-release`.
44+
Variant will be the third item in the package name. Example: `fedora-release-kinoite-39-34.noarch` will be kinoite
5445

5546
## VSCode Dev Container
5647
There is a dev container configuration provided for development. By default it will use the existing container image available at `ghcr.io/ublue-os/isogenerator`, however, you can have it build a new image by editing `.devcontainer/devcontainer.json` and replacing `image` with `build`. `Ctrl+/` can be used to comment and uncomment blocks of code within VSCode.

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ runs:
106106
IMAGE_TAG=${{ inputs.IMAGE_TAG || inputs.VERSION }} \
107107
VARIANT=${{ inputs.VARIANT }} \
108108
VERSION=${{ inputs.VERSION }} \
109-
WEB_UI=${{ inputs.WEB_UI }}
109+
WEB_UI=${{ inputs.WEB_UI }} \
110110
EXTRA_BOOT_PARAMS=${{ inputs.EXTRA_BOOT_PARAMS }}
111111
112112
- name: Create deploy.iso and generate sha256 checksum

0 commit comments

Comments
 (0)