fwupd/.github/workflows/create_containers.yml
dependabot[bot] 77928fc4b3 build(deps): bump docker/build-push-action from 1 to 3
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 1 to 3.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](https://github.com/docker/build-push-action/compare/v1...v3)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-06-06 08:41:56 +01:00

30 lines
758 B
YAML

name: Create containers
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
push_to_registry:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [fedora, debian-x86_64, arch, debian-i386, void]
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: "Generate Dockerfile"
env:
OS: ${{ matrix.os }}
run: ./contrib/ci/generate_docker.py
- name: Push to GitHub Packages
uses: docker/build-push-action@v3
with:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
registry: docker.pkg.github.com
repository: fwupd/fwupd/fwupd-${{matrix.os}}
tags: latest