mirror of
https://git.proxmox.com/git/fwupd
synced 2026-03-29 03:15:20 +00:00
28 lines
708 B
YAML
28 lines
708 B
YAML
name: Create containers
|
|
on:
|
|
schedule:
|
|
- cron: '* 0 * * *'
|
|
|
|
jobs:
|
|
push_to_registry:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
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
|