mirror of
https://github.com/m1k1o/neko.git
synced 2025-04-29 02:16:21 +02:00
47 lines
1.1 KiB
YAML
47 lines
1.1 KiB
YAML
name: Build and Push to GHCR for Intel
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
|
|
jobs:
|
|
build-base:
|
|
name: Base Image
|
|
uses: ./.github/workflows/image_base.yml
|
|
with:
|
|
flavor: intel
|
|
platforms: linux/amd64
|
|
dockerfile: Dockerfile.intel
|
|
secrets: inherit
|
|
|
|
build-app:
|
|
name: App 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
|
|
# Temporarily disabled due to Cloudflare blocked download link
|
|
#- 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: ${{ matrix.platforms }}
|
|
dockerfile: ${{ matrix.dockerfile }}
|
|
secrets: inherit
|