fwupd/.github/workflows/create_containers.yml
Mario Limonciello dd075eb2be trivial: for create containers workflow don't fail fast
Just because Arch fails to build or push one day, don't
make all the containers fail to build or push.
2021-01-13 11:56:16 -06:00

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