Fix dnf5 copr problem #150
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: Image build and push | |
on: [push, pull_request] | |
jobs: | |
image-build-and-push: | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event." | |
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" | |
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
- name: Build Image | |
uses: redhat-actions/buildah-build@v2 | |
with: | |
image: quay.io/fedoraci/rpminspect | |
tags: latest ${{ github.sha }} | |
containerfiles: | | |
./Dockerfile | |
- run: echo "🍏 This job's status is ${{ job.status }}." |