Release IIB v8.9.0 #61
Workflow file for this run
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 IIB-API image and push to quay.io | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
# this job will only be triggered when tag is pushed | |
deployments: | |
name: Build and Push IIB-API to quay.io | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.release.tag_name }} | |
- name: Build iib-api | |
id: build-iib-api | |
uses: redhat-actions/buildah-build@v2 | |
with: | |
image: iib-api | |
tags: qe | |
dockerfiles: | | |
./docker/Dockerfile-api | |
- name: Push iib-api to quay.io | |
id: push-iib-api | |
uses: redhat-actions/[email protected] | |
with: | |
image: ${{ steps.build-iib-api.outputs.image }} | |
tags: ${{ steps.build-iib-api.outputs.tags }} | |
registry: quay.io/exd-guild-hello-operator | |
username: ${{ secrets.REGISTRY_QUAY_IO_USER }} | |
password: ${{ secrets.REGISTRY_QUAY_IO_PASSWORD }} |