forked from flatpak/flatpak-github-actions
-
Notifications
You must be signed in to change notification settings - Fork 4
102 lines (84 loc) · 2.9 KB
/
docker.yml
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
on:
schedule:
- cron: "0 0 * * */7"
workflow_dispatch:
repository_dispatch:
types: [trigger-workflow]
name: Docker images
jobs:
build-images:
name: Build & push Docker images
runs-on: ubuntu-latest
permissions:
packages: write
strategy:
matrix:
runtime:
- name: freedesktop-23.08
packages: org.freedesktop.Platform//23.08 org.freedesktop.Sdk//23.08
remote: flathub
- name: freedesktop-24.08
packages: org.freedesktop.Platform//24.08 org.freedesktop.Sdk//24.08
remote: flathub
- name: gnome-46
packages: org.gnome.Platform//46 org.gnome.Sdk//46
remote: flathub
- name: gnome-47
packages: org.gnome.Platform//47 org.gnome.Sdk//47
remote: flathub
- name: kde-5.15-23.08
packages: org.kde.Platform//5.15-23.08 org.kde.Sdk//5.15-23.08
remote: flathub
- name: kde-5.15-24.08
packages: org.kde.Platform//5.15-24.08 org.kde.Sdk//5.15-24.08
remote: flathub
- name: kde-6.7
packages: org.kde.Platform//6.7 org.kde.Sdk//6.7
remote: flathub
- name: kde-6.8
packages: org.kde.Platform//6.8 org.kde.Sdk//6.8
remote: flathub
services:
registry:
image: registry:latest
ports:
- 5000:5000
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
driver-opts: network=host
- name: Build & push the base image to local registry
uses: docker/build-push-action@v6
with:
context: .
file: Dockerfile
platforms: linux/amd64,linux/arm64
pull: true
push: true
tags: localhost:5000/base:latest
- name: Login to ghcr.io
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Write the Dockerfile for the ${{ matrix.runtime.name }} runtime
run: |
cat >> ${{ matrix.runtime.name }}.Dockerfile << EOF
# syntax = docker/dockerfile:experimental
FROM localhost:5000/base:latest
RUN --security=insecure flatpak install -y --noninteractive ${{matrix.runtime.remote}} ${{ matrix.runtime.packages }}
- name: Build & push the ${{ matrix.runtime.name }} image
uses: docker/build-push-action@v6
with:
allow: security.insecure
context: .
file: ${{ matrix.runtime.name }}.Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/flathub-infra/flatpak-github-actions:${{ matrix.runtime.name }}