Skip to content
This repository was archived by the owner on Feb 17, 2026. It is now read-only.

Version 1.15.0-rc.66 #604

Version 1.15.0-rc.66

Version 1.15.0-rc.66 #604

Workflow file for this run

name: build and publish ubi8 builder image
on:
push:
branches:
- 'master'
- 'prep-*'
# tags:
# - 'v*'
# pull_request:
# branches:
# - 'master'
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}-builder-ubi8
jobs:
build-and-push-image:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for ubi image
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push ubi image
uses: docker/build-push-action@v5
with:
context: .
file: Ctl/docker/Dockerfile.ubi8
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}