mirror of
https://git.proxmox.com/git/fwupd
synced 2026-03-27 21:07:48 +00:00
Just because Arch fails to build or push one day, don't make all the containers fail to build or push.
29 lines
731 B
YAML
29 lines
731 B
YAML
name: Create containers
|
|
on:
|
|
schedule:
|
|
- cron: '* 0 * * *'
|
|
|
|
jobs:
|
|
push_to_registry:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [fedora, debian-x86_64, arch, debian-i386]
|
|
|
|
steps:
|
|
- name: Check out the repo
|
|
uses: actions/checkout@v2
|
|
- name: "Generate Dockerfile"
|
|
env:
|
|
OS: ${{ matrix.os }}
|
|
run: ./contrib/ci/generate_docker.py
|
|
- name: Push to GitHub Packages
|
|
uses: docker/build-push-action@v1
|
|
with:
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
registry: docker.pkg.github.com
|
|
repository: fwupd/fwupd/fwupd-${{matrix.os}}
|
|
tags: latest
|