mirror of
https://github.com/m1k1o/neko.git
synced 2025-04-29 02:16:21 +02:00
42 lines
1,018 B
YAML
42 lines
1,018 B
YAML
name: Build and Push to GHCR for Nvidia
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
|
|
jobs:
|
|
build-base:
|
|
name: Build Base Image
|
|
uses: ./.github/workflows/image_base.yml
|
|
with:
|
|
flavor: nvidia
|
|
platforms: linux/amd64
|
|
dockerfile: Dockerfile.nvidia
|
|
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
|
|
dockerfile: Dockerfile.nvidia
|
|
- name: brave
|
|
dockerfile: Dockerfile.nvidia
|
|
- name: chromium
|
|
dockerfile: Dockerfile.nvidia
|
|
- name: google-chrome
|
|
dockerfile: Dockerfile.nvidia
|
|
- name: microsoft-edge
|
|
dockerfile: Dockerfile.nvidia
|
|
with:
|
|
name: ${{ matrix.name }}
|
|
flavor: nvidia
|
|
platforms: linux/amd64
|
|
dockerfile: ${{ matrix.dockerfile }}
|
|
secrets: inherit
|