Skip to content

Commit

Permalink
Add build-images workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mikenairn committed Feb 2, 2024
1 parent c48dc18 commit 6ef4e3a
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,14 @@ on:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch:
inputs:
tag:
description: Tag
required: false
default: latest

env:
IMG_TAGS: ${{ github.sha }}
IMG_TAGS: ${{ github.sha }} ${{ github.ref_name }}
IMG_REGISTRY_HOST: quay.io
IMG_REGISTRY_ORG: kuadrant
IMG_REGISTRY_REPO: kuadrant-dns-operator
Expand Down Expand Up @@ -42,7 +47,7 @@ jobs:
dockerfiles: |
./Dockerfile
- name: Print Build Info
run: echo "Image - ${{ steps.build-image.outputs.image }}, Tags - ${{ steps.build-image.outputs.tags }}"
run: echo "Image = ${{ steps.build-image.outputs.image }}, Tags = ${{ steps.build-image.outputs.tags }}"
# - name: Push Image
# if: ${{ !env.ACT }}
# id: push-to-quay
Expand Down

0 comments on commit 6ef4e3a

Please sign in to comment.