fix: use IMAGE_NAME and IMAGE_DESC for variables + fix typo in containerfile (#51)
This commit is contained in:
parent
4fa1d41a49
commit
93299922c7
|
|
@ -14,8 +14,8 @@ on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
MY_IMAGE_NAME: "${{ github.event.repository.name }}" # the name of the image produced by this build, matches repo names
|
IMAGE_NAME: "${{ github.event.repository.name }}" # the name of the image produced by this build, matches repo names
|
||||||
MY_IMAGE_DESC: "My Customized Universal Blue Image"
|
IMAGE_DESC: "My Customized Universal Blue Image"
|
||||||
IMAGE_REGISTRY: "ghcr.io/${{ github.repository_owner }}" # do not edit
|
IMAGE_REGISTRY: "ghcr.io/${{ github.repository_owner }}" # do not edit
|
||||||
ARTIFACTHUB_LOGO_URL: "https://avatars.githubusercontent.com/u/120078124?s=200&v=4" # You should put your own image here so that you get a fancy profile image on https://artifacthub.io/!
|
ARTIFACTHUB_LOGO_URL: "https://avatars.githubusercontent.com/u/120078124?s=200&v=4" # You should put your own image here so that you get a fancy profile image on https://artifacthub.io/!
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
FROM ghcr.io/ublue-os/ublue-os/silverblue-main:latest
|
FROM ghcr.io/ublue-os/silverblue-main:latest
|
||||||
|
|
||||||
## Other possible base images include:
|
## Other possible base images include:
|
||||||
# FROM ghcr.io/ublue-os/bazzite:stable
|
# FROM ghcr.io/ublue-os/bazzite:stable
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue