forked from m1k1o/neko
-
Notifications
You must be signed in to change notification settings - Fork 1
58 lines (55 loc) · 1.71 KB
/
ghcr.yml
File metadata and controls
58 lines (55 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: Build and Push to GHCR
on:
push:
tags:
- 'v*'
jobs:
build-base:
name: Base Image
uses: ./.github/workflows/image_base.yml
with:
platforms: linux/amd64,linux/arm64,linux/arm/v7
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.
# kernel edit : chromium only now
fail-fast: false
matrix:
include:
#- name: firefox
# platforms: linux/amd64,linux/arm64,linux/arm/v7
# Temporarily disabled due to Cloudflare blocked download link
#- name: waterfox
# platforms: linux/amd64
- name: chromium
platforms: linux/amd64,linux/arm64,linux/arm/v7
#- name: google-chrome
# platforms: linux/amd64
#- name: ungoogled-chromium
# platforms: linux/amd64
#- name: microsoft-edge
# platforms: linux/amd64
#- name: brave
# platforms: linux/amd64,linux/arm64
#- name: vivaldi
# platforms: linux/amd64,linux/arm64,linux/arm/v7
#- name: opera
# platforms: linux/amd64
#- name: tor-browser
# platforms: linux/amd64
#- name: remmina
# platforms: linux/amd64,linux/arm64,linux/arm/v7
#- name: vlc
# platforms: linux/amd64,linux/arm64,linux/arm/v7
#- name: xfce
# platforms: linux/amd64,linux/arm64,linux/arm/v7
#- name: kde
# platforms: linux/amd64,linux/arm64,linux/arm/v7
with:
name: ${{ matrix.name }}
platforms: ${{ matrix.platforms }}
secrets: inherit