prepare release v0.8.0 #253
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 Publish Images | |
on: | |
push: | |
branches: | |
- main | |
- "release-*" | |
workflow_dispatch: | |
env: | |
IMG_TAGS: ${{ github.sha }} ${{ github.ref_name }} | |
IMG_REGISTRY_HOST: quay.io | |
IMG_REGISTRY_ORG: kuadrant | |
IMG_REGISTRY_REPO: dns-operator | |
MAIN_BRANCH_NAME: main | |
OPERATOR_NAME: dns-operator | |
jobs: | |
build: | |
name: Build and Push image | |
runs-on: ubuntu-latest | |
outputs: | |
build-tags: ${{ steps.build-image.outputs.tags }} | |
build-image: ${{ env.IMG_REGISTRY_HOST }}/${{ env.IMG_REGISTRY_ORG }}/${{ steps.build-image.outputs.image }}:${{ github.sha }} | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Read release string version | |
id: release | |
run: | | |
version=`make read-release-version` | |
echo version=$version >> $GITHUB_OUTPUT | |
- name: Add latest tag | |
if: ${{ github.ref_name == env.MAIN_BRANCH_NAME }} | |
id: add-latest-tag | |
run: | | |
echo "IMG_TAGS=latest ${{ env.IMG_TAGS }}" >> $GITHUB_ENV | |
- name: Install qemu dependency | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y qemu-user-static | |
- name: Build Image | |
id: build-image | |
uses: redhat-actions/buildah-build@v2 | |
with: | |
image: ${{ env.OPERATOR_NAME }} | |
tags: ${{ env.IMG_TAGS }} | |
platforms: linux/amd64,linux/arm64 | |
build-args: | | |
GIT_SHA=${{ github.sha }} | |
DIRTY=false | |
VERSION=${{ steps.release.outputs.version }} | |
dockerfiles: | | |
./Dockerfile | |
- name: Print Build Info | |
run: echo "Image = ${{ steps.build-image.outputs.image }}, Tags = ${{ steps.build-image.outputs.tags }}" | |
- name: Push Image | |
if: github.repository_owner == 'kuadrant' | |
id: push-to-quay | |
uses: redhat-actions/push-to-registry@v2 | |
with: | |
image: ${{ steps.build-image.outputs.image }} | |
tags: ${{ steps.build-image.outputs.tags }} | |
registry: ${{ env.IMG_REGISTRY_HOST }}/${{ env.IMG_REGISTRY_ORG }} | |
username: ${{ secrets.IMG_REGISTRY_USERNAME }} | |
password: ${{ secrets.IMG_REGISTRY_TOKEN }} | |
- name: Print Image URL | |
run: echo "Image pushed to ${{ steps.push-to-quay.outputs.registry-paths }}" | |
build-bundle: | |
name: Build and Push bundle image | |
needs: [build] | |
runs-on: ubuntu-latest | |
outputs: | |
bundle-image: ${{ env.IMG_REGISTRY_HOST }}/${{ env.IMG_REGISTRY_ORG }}/${{ steps.build-image.outputs.image }}:${{ github.sha }} | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Run make bundle | |
run: make bundle IMG=${{ needs.build.outputs.build-image }} | |
- name: Install qemu dependency | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y qemu-user-static | |
- name: Build Image | |
id: build-image | |
uses: redhat-actions/buildah-build@v2 | |
with: | |
image: ${{ env.OPERATOR_NAME }}-bundle | |
tags: ${{ needs.build.outputs.build-tags }} | |
platforms: linux/amd64,linux/arm64 | |
dockerfiles: | | |
./bundle.Dockerfile | |
- name: Print Build Info | |
run: echo "Image = ${{ steps.build-image.outputs.image }}, Tags = ${{ steps.build-image.outputs.tags }}, Operator IMG = ${{ needs.build.outputs.build-image }}" | |
- name: Push Image | |
if: github.repository_owner == 'kuadrant' | |
id: push-to-quay | |
uses: redhat-actions/push-to-registry@v2 | |
with: | |
image: ${{ steps.build-image.outputs.image }} | |
tags: ${{ steps.build-image.outputs.tags }} | |
registry: ${{ env.IMG_REGISTRY_HOST }}/${{ env.IMG_REGISTRY_ORG }} | |
username: ${{ secrets.IMG_REGISTRY_USERNAME }} | |
password: ${{ secrets.IMG_REGISTRY_TOKEN }} | |
- name: Print Image URL | |
run: echo "Image pushed to ${{ steps.push-to-quay.outputs.registry-paths }}" | |
build-catalog: | |
name: Build and Push catalog image | |
needs: [build, build-bundle] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Run make catalog-build | |
run: make catalog-build BUNDLE_IMG=${{ needs.build-bundle.outputs.bundle-image }} | |
- name: Install qemu dependency | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y qemu-user-static | |
- name: Build Image | |
id: build-image | |
uses: redhat-actions/buildah-build@v2 | |
with: | |
image: ${{ env.OPERATOR_NAME }}-catalog | |
tags: ${{ needs.build.outputs.build-tags }} | |
platforms: linux/amd64,linux/arm64 | |
context: ./tmp/catalog | |
dockerfiles: | | |
./tmp/catalog/index.Dockerfile | |
- name: Print Build Info | |
run: echo "Image = ${{ steps.build-image.outputs.image }}, Tags = ${{ steps.build-image.outputs.tags }}, Bundle IMG = ${{ needs.build-bundle.outputs.bundle-image }}" | |
- name: Push Image | |
if: github.repository_owner == 'kuadrant' | |
id: push-to-quay | |
uses: redhat-actions/push-to-registry@v2 | |
with: | |
image: ${{ steps.build-image.outputs.image }} | |
tags: ${{ steps.build-image.outputs.tags }} | |
registry: ${{ env.IMG_REGISTRY_HOST }}/${{ env.IMG_REGISTRY_ORG }} | |
username: ${{ secrets.IMG_REGISTRY_USERNAME }} | |
password: ${{ secrets.IMG_REGISTRY_TOKEN }} | |
- name: Print Image URL | |
run: echo "Image pushed to ${{ steps.push-to-quay.outputs.registry-paths }}" |