mirror of
https://github.com/JasonN3/build-container-installer.git
synced 2025-12-25 10:57:55 +01:00
add fedora eln
This commit is contained in:
parent
8346576816
commit
f96a6fe3f8
2 changed files with 7 additions and 7 deletions
10
.github/workflows/build_iso.yml
vendored
10
.github/workflows/build_iso.yml
vendored
|
|
@ -111,14 +111,15 @@ jobs:
|
||||||
echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u ${{ github.actor }} --password-stdin
|
echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u ${{ github.actor }} --password-stdin
|
||||||
|
|
||||||
- name: Build ISO
|
- name: Build ISO
|
||||||
|
if: matrix.version != 'eln' || ( inputs.flatpak_remote_refs_dir == '' && inputs.flatpaks_refs == '')
|
||||||
uses: ./
|
uses: ./
|
||||||
id: build
|
id: build
|
||||||
with:
|
with:
|
||||||
arch: ${{ needs.load_vars.outputs.ARCH }}
|
arch: ${{ needs.load_vars.outputs.ARCH }}
|
||||||
image_name: ${{ needs.load_vars.outputs.IMAGE_NAME }}
|
image_name: ${{ matrix.version == 'eln' && 'fedora-bootc' || needs.load_vars.outputs.IMAGE_NAME }}
|
||||||
image_repo: ${{ needs.load_vars.outputs.IMAGE_REPO }}
|
image_repo: ${{ matrix.version == 'eln' && 'quay.io/centos-bootc' || needs.load_vars.outputs.IMAGE_REPO }}
|
||||||
image_tag: ${{ matrix.version }}
|
image_tag: ${{ matrix.version || matrix.version }}
|
||||||
version: ${{ matrix.version }}
|
version: ${{ matrix.version == 'eln' && '39' || matrix.version }}
|
||||||
variant: ${{ needs.load_vars.outputs.VARIANT }}
|
variant: ${{ needs.load_vars.outputs.VARIANT }}
|
||||||
flatpak_remote_refs: ${{ inputs.flatpaks_refs }}
|
flatpak_remote_refs: ${{ inputs.flatpaks_refs }}
|
||||||
flatpak_remote_refs_dir: ${{ inputs.flatpaks_refs_dir }}
|
flatpak_remote_refs_dir: ${{ inputs.flatpaks_refs_dir }}
|
||||||
|
|
@ -127,6 +128,7 @@ jobs:
|
||||||
iso_name: build/${{ needs.load_vars.outputs.IMAGE_NAME }}-${{ matrix.version }}${{ inputs.suffix && format('-{0}', inputs.suffix || '') }}.iso
|
iso_name: build/${{ needs.load_vars.outputs.IMAGE_NAME }}-${{ matrix.version }}${{ inputs.suffix && format('-{0}', inputs.suffix || '') }}.iso
|
||||||
|
|
||||||
- name: Upload ISO as artifact
|
- name: Upload ISO as artifact
|
||||||
|
if: matrix.version != 'eln' || ( inputs.flatpak_remote_refs_dir == '' && inputs.flatpaks_refs == '')
|
||||||
id: upload
|
id: upload
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
4
.github/workflows/build_vars.yml
vendored
4
.github/workflows/build_vars.yml
vendored
|
|
@ -6,13 +6,11 @@ on:
|
||||||
ARCH:
|
ARCH:
|
||||||
value: 'x86_64'
|
value: 'x86_64'
|
||||||
BUILD_VERSIONS:
|
BUILD_VERSIONS:
|
||||||
value: '[38, 39, 40]'
|
value: '[38, 39, 40, eln]'
|
||||||
IMAGE_NAME:
|
IMAGE_NAME:
|
||||||
value: 'base'
|
value: 'base'
|
||||||
IMAGE_REPO:
|
IMAGE_REPO:
|
||||||
value: 'quay.io/fedora-ostree-desktops'
|
value: 'quay.io/fedora-ostree-desktops'
|
||||||
IMAGE_TAG:
|
|
||||||
value: '39'
|
|
||||||
VARIANT:
|
VARIANT:
|
||||||
value: 'Server'
|
value: 'Server'
|
||||||
FLATPAK_REMOTE_REFS_DIR:
|
FLATPAK_REMOTE_REFS_DIR:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue