Merge pull request #121 from sclorg/do_no_print_diff #56
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 and push betka image to Quay.io registry | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-and-push: | |
runs-on: ubuntu-20.04 | |
if: github.repository_owner == 'sclorg' | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Build betka image | |
id: build-image | |
# https://github.com/marketplace/actions/buildah-build | |
uses: redhat-actions/buildah-build@v2 | |
with: | |
dockerfiles: ./Dockerfile | |
image: betka | |
tags: latest 1 ${{ github.sha }} 0.7.14 | |
- name: Push betka image to Quay.io | |
id: push-to-quay | |
uses: redhat-actions/[email protected] | |
with: | |
image: ${{ steps.build-image.outputs.image }} | |
tags: ${{ steps.build-image.outputs.tags }} | |
registry: quay.io/rhscl | |
username: ${{ secrets.QUAY_IMAGE_RHSCL_BUILDER_USERNAME }} | |
password: ${{ secrets.QUAY_IMAGE_RHSCL_BUILDER_TOKEN }} | |
- name: Print image url | |
run: echo "Image pushed to ${{ steps.push-to-quay.outputs.registry-paths }}" |