mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 10:57:55 +01:00
68 lines
1.7 KiB
YAML
68 lines
1.7 KiB
YAML
name: Build Vars
|
|
|
|
on:
|
|
workflow_call:
|
|
outputs:
|
|
ARCH:
|
|
value: 'x86_64'
|
|
BUILD_MATRIX:
|
|
value: '
|
|
{
|
|
"version": [
|
|
"38",
|
|
"39",
|
|
"40",
|
|
],
|
|
"flatpaks": [
|
|
"false",
|
|
"flatpak_dir",
|
|
"flatpak_refs"
|
|
],
|
|
"exclude": [
|
|
{
|
|
"version": "40",
|
|
"flatpaks": "flatpak_dir"
|
|
},
|
|
{
|
|
"version": "40",
|
|
"flatpaks": "flatpak_refs"
|
|
}
|
|
],
|
|
"include": [
|
|
{
|
|
"version": "38",
|
|
"image_repo": "quay.io/fedora-ostree-desktops",
|
|
"image_name": "base"
|
|
},
|
|
{
|
|
"version": "39",
|
|
"image_repo": "quay.io/fedora-ostree-desktops",
|
|
"image_name": "base"
|
|
},
|
|
{
|
|
"version": "40",
|
|
"image_repo": "quay.io/fedora",
|
|
"image_name": "fedora-bootc"
|
|
}
|
|
]
|
|
}'
|
|
VARIANT:
|
|
value: 'Server'
|
|
FLATPAK_REMOTE_REFS_DIR:
|
|
value: flatpak_refs
|
|
FLATPAK_REMOTE_REFS:
|
|
value: "app/org.mozilla.firefox/x86_64/stable app/org.videolan.VLC/x86_64/stable"
|
|
SECURE_BOOT_KEY_URL:
|
|
value: 'https://github.com/ublue-os/akmods/raw/main/certs/public_key.der'
|
|
ENROLLMENT_PASSWORD:
|
|
value: 'container-installer'
|
|
|
|
|
|
jobs:
|
|
load-vars:
|
|
name: Load Variables
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Sucess
|
|
run:
|
|
echo "Vars loaded"
|