Skip to content

Merge pull request #105 from sclorg/fix_loading_cfg #40

Merge pull request #105 from sclorg/fix_loading_cfg

Merge pull request #105 from sclorg/fix_loading_cfg #40

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.1
- 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 }}"