Skip to content

Commit

Permalink
Push images to flathub-infra GHCR namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
barthalion committed Dec 15, 2023
1 parent 5506d2e commit 85b5469
Showing 1 changed file with 19 additions and 71 deletions.
90 changes: 19 additions & 71 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
on:
schedule:
- cron: "0 0 * * */7" # This should run every hour
- cron: "0 0 * * */7"
workflow_dispatch:

name: Docker images
Expand All @@ -9,18 +9,12 @@ jobs:
build-images:
name: Build & push Docker images
runs-on: ubuntu-22.04
permissions:
packages: write

strategy:
matrix:
runtime:
- name: freedesktop-20.08
packages: org.freedesktop.Platform//20.08 org.freedesktop.Sdk//20.08
remote: flathub

- name: freedesktop-21.08
packages: org.freedesktop.Platform//21.08 org.freedesktop.Sdk//21.08
remote: flathub

- name: freedesktop-22.08
packages: org.freedesktop.Platform//22.08 org.freedesktop.Sdk//22.08
remote: flathub
Expand All @@ -29,26 +23,6 @@ jobs:
packages: org.freedesktop.Platform//23.08 org.freedesktop.Sdk//23.08
remote: flathub

- name: gnome-3.38
packages: org.gnome.Platform//3.38 org.gnome.Sdk//3.38
remote: flathub

- name: gnome-40
packages: org.gnome.Platform//40 org.gnome.Sdk//40
remote: flathub

- name: gnome-41
packages: org.gnome.Platform//41 org.gnome.Sdk//41
remote: flathub

- name: gnome-42
packages: org.gnome.Platform//42 org.gnome.Sdk//42
remote: flathub

- name: gnome-43
packages: org.gnome.Platform//43 org.gnome.Sdk//43
remote: flathub

- name: gnome-44
packages: org.gnome.Platform//44 org.gnome.Sdk//44
remote: flathub
Expand All @@ -57,18 +31,6 @@ jobs:
packages: org.gnome.Platform//45 org.gnome.Sdk//45
remote: flathub

- name: gnome-nightly
packages: org.gnome.Platform//master org.gnome.Sdk//master
remote: gnome-nightly

- name: kde-5.15
packages: org.kde.Platform//5.15 org.kde.Sdk//5.15
remote: flathub

- name: kde-5.15-21.08
packages: org.kde.Platform//5.15-21.08 org.kde.Sdk//5.15-21.08
remote: flathub

- name: kde-5.15-22.08
packages: org.kde.Platform//5.15-22.08 org.kde.Sdk//5.15-22.08
remote: flathub
Expand All @@ -77,18 +39,6 @@ jobs:
packages: org.kde.Platform//5.15-23.08 org.kde.Sdk//5.15-23.08
remote: flathub

- name: kde-6.2
packages: org.kde.Platform//6.2 org.kde.Sdk//6.2
remote: flathub

- name: kde-6.3
packages: org.kde.Platform//6.3 org.kde.Sdk//6.3
remote: flathub

- name: kde-6.4
packages: org.kde.Platform//6.4 org.kde.Sdk//6.4
remote: flathub

- name: kde-6.5
packages: org.kde.Platform//6.5 org.kde.Sdk//6.5
remote: flathub
Expand All @@ -97,10 +47,6 @@ jobs:
packages: org.kde.Platform//6.6 org.kde.Sdk//6.6
remote: flathub

- name: elementary-juno
packages: io.elementary.BaseApp//juno-20.08 org.gnome.Platform//3.38 org.gnome.Sdk//3.38
remote: flathub

services:
registry:
image: registry:latest
Expand All @@ -112,48 +58,50 @@ jobs:
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2.2.1
uses: docker/setup-buildx-action@v3
with:
driver-opts: network=host

- name: Cache Docker layers for the base image
uses: actions/cache@v3.2.0
uses: actions/cache@v3
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Build & push the Fedora base image to local registry
uses: docker/build-push-action@v3.2.0
- name: Build & push the base image to local registry
uses: docker/build-push-action@v5
with:
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache
context: .
file: Dockerfile
pull: true
push: true
tags: localhost:5000/fedora-base:latest
tags: localhost:5000/base:latest

- name: Login to Docker Hub
uses: docker/login-action@v2.1.0
- name: Login to ghcr.io
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
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/fedora-base:latest
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 to Docker Hub
uses: docker/build-push-action@v3.2.0
- name: Build & push the ${{ matrix.runtime.name }} image
uses: docker/build-push-action@v5
with:
allow: security.insecure
context: .
file: ${{ matrix.runtime.name }}.Dockerfile
push: true
tags: bilelmoussaoui/flatpak-github-actions:${{ matrix.runtime.name }}
tags: ghcr.io/flathub-infra/flatpak-github-actions:${{ matrix.runtime.name }}
cache-from: type=gha
cache-to: type=gha,mode=max

0 comments on commit 85b5469

Please sign in to comment.