Skip to content

chore(deps): update quay.io/openshift/origin-jenkins-agent-maven dock… #54

chore(deps): update quay.io/openshift/origin-jenkins-agent-maven dock…

chore(deps): update quay.io/openshift/origin-jenkins-agent-maven dock… #54

name: ubi8-bats-publish
on:
push:
paths:
- utilities/ubi8-bats/version.json
- .github/workflows/ubi8-bats-publish.yaml
jobs:
build:
env:
context: utilities/ubi8-bats
image_name: ubi8-bats
REGISTRY: ${{ secrets.REGISTRY_URI }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get image tags
id: image_tags
uses: redhat-cop/github-actions/get-image-version@v4
with:
IMAGE_CONTEXT_DIR: ${{ env.context }}
- name: Build image
id: build_image
uses: redhat-actions/buildah-build@v2
with:
context: ${{ env.context }}
dockerfiles: |
./${{ env.context }}/Dockerfile
image: ${{ env.image_name }}
tags: "${{ steps.image_tags.outputs.IMAGE_TAGS }}"
- name: Push to ghcr.io
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ steps.build_image.outputs.image }}
registry: ghcr.io/${{ github.repository }}
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
tags: ${{ steps.build_image.outputs.tags }}
- name: Push to Quay
if: ${{ env.REGISTRY }} != ""
id: push_to_quay
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ steps.build_image.outputs.image }}
registry: ${{ secrets.REGISTRY_URI }}/${{ secrets.REGISTRY_REPOSITORY }}
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
tags: ${{ steps.build_image.outputs.tags }}