Rebuild & push base image #217
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rebuild & push base image | |
on: | |
workflow_dispatch: | |
schedule: | |
# At 00:00 on Tuesday. | |
- cron: "0 0 * * 2" | |
push: | |
branches: | |
- main | |
paths: | |
- containers/Containerfile.c9s | |
jobs: | |
build: | |
# To not run in forks | |
if: github.repository_owner == 'packit' | |
name: Build and push image | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- containerfile: containers/Containerfile.c9s | |
tags: "c9s latest" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install QEMU dependency | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y qemu-user-static | |
- name: Build Image | |
id: build-image | |
uses: redhat-actions/buildah-build@v2 | |
with: | |
containerfiles: ${{ matrix.containerfile }} | |
image: base | |
tags: ${{ matrix.tags }} | |
archs: amd64, arm64, ppc64le | |
# Uncomment once we stop using oc cluster up for tests | |
# oci: true | |
- name: Push To Quay | |
uses: redhat-actions/push-to-registry@v2 | |
with: | |
image: ${{ steps.build-image.outputs.image }} | |
tags: ${{ steps.build-image.outputs.tags }} | |
registry: quay.io/packit | |
username: ${{ secrets.QUAY_IMAGE_BUILDER_USERNAME }} | |
password: ${{ secrets.QUAY_IMAGE_BUILDER_TOKEN }} |