Skip to content

Create containers #1407

Create containers

Create containers #1407

name: Create containers
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
permissions:
contents: read
jobs:
push_to_registry:
permissions:
packages: write # for docker/build-push-action
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [precommit, fedora, debian-x86_64, arch, debian-i386, void]
steps:
- name: Check out the repo
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- name: "Generate Dockerfile"
env:
OS: ${{ matrix.os }}
run: ./contrib/ci/generate_docker.py
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3.0
- name: Login to GitHub Container Registry
uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # v3.1.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push to GitHub Packages
uses: docker/build-push-action@2cdde995de11925a030ce8070c3d77a52ffcf1c0 # v5.3.0
with:
context: .
push: true
tags: ghcr.io/fwupd/fwupd/fwupd-${{matrix.os}}:latest