neko/.github/workflows/ghcr_intel.yml
2025-03-30 17:58:44 +02:00

46 lines
1 KiB
YAML

name: Build and Push to GHCR for Intel
on:
push:
tags:
- 'v*'
jobs:
build-base:
name: Build Base Image
uses: ./.github/workflows/image_base.yml
with:
flavor: intel
platforms: linux/amd64
dockerfile: Dockerfile.intel
secrets: inherit
build-apps:
name: Build Apps Image
uses: ./.github/workflows/image_app.yml
needs: build-base
strategy:
# Will build all images even if some fail.
fail-fast: false
matrix:
include:
- name: firefox
- name: waterfox
- name: chromium
- name: google-chrome
- name: ungoogled-chromium
- name: microsoft-edge
- name: brave
- name: vivaldi
- name: opera
- name: tor-browser
- name: remmina
- name: vlc
- name: xfce
- name: kde
with:
name: ${{ matrix.name }}
flavor: intel
platforms: linux/amd64
dockerfile: ${{ matrix.dockerfile }}
secrets: inherit