actually reinstall manpage packages #9
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: Build images | |
on: | |
schedule: | |
# 4AM every monday, matches upstream weekly builds on sunday | |
- cron: '0 4 * * MON' | |
push: | |
branches: [ "main" ] | |
env: | |
IMAGE: ${{ github.repository_owner }}/toolbx-images | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
tag: | |
- arch | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Build Image | |
id: build_image | |
uses: redhat-actions/buildah-build@v2 | |
with: | |
image: ${{ env.IMAGE }} | |
tags: ${{ matrix.tag }} | |
containerfiles: ./Containerfile.${{ matrix.tag }} | |
- name: Push To GHCR | |
uses: redhat-actions/push-to-registry@v2 | |
id: push-ghcr | |
with: | |
registry: ghcr.io | |
image: ${{ steps.build_image.outputs.image }} | |
tags: ${{ steps.build_image.outputs.tags }} | |
username: ${{ github.actor }} | |
password: ${{ github.token }} |