diff --git a/.github/workflows/promote.yaml b/.github/workflows/promote.yaml index 93c70ef94c..05a166abc6 100644 --- a/.github/workflows/promote.yaml +++ b/.github/workflows/promote.yaml @@ -22,11 +22,20 @@ jobs: - name: Re-tag and promote awx-operator image run: | + # Promote operator image docker pull ghcr.io/${{ github.repository }}:${{ github.event.release.tag_name }} docker tag ghcr.io/${{ github.repository }}:${{ github.event.release.tag_name }} quay.io/${{ github.repository }}:${{ github.event.release.tag_name }} docker tag ghcr.io/${{ github.repository }}:${{ github.event.release.tag_name }} quay.io/${{ github.repository }}:latest docker push quay.io/${{ github.repository }}:${{ github.event.release.tag_name }} docker push quay.io/${{ github.repository }}:latest + # Promote bundle image + docker pull ghcr.io/${{ github.repository }}-bundle:v${{ github.event.release.tag_name }} + docker tag ghcr.io/${{ github.repository }}-bundle:v${{ github.event.release.tag_name }} quay.io/${{ github.repository }}-bundle:v${{ github.event.release.tag_name }} + docker push quay.io/${{ github.repository }}-bundle:v${{ github.event.release.tag_name }} + # Promote catalog image + docker pull ghcr.io/${{ github.repository }}-catalog:v${{ github.event.release.tag_name }} + docker tag ghcr.io/${{ github.repository }}-catalog:v${{ github.event.release.tag_name }} quay.io/${{ github.repository }}-catalog:v${{ github.event.release.tag_name }} + docker push quay.io/${{ github.repository }}-catalog:v${{ github.event.release.tag_name }} - name: Release Helm chart run: | diff --git a/.github/workflows/stage.yml b/.github/workflows/stage.yml index 7ef76bf014..1488a4dd82 100644 --- a/.github/workflows/stage.yml +++ b/.github/workflows/stage.yml @@ -63,7 +63,8 @@ jobs: BUILD_ARGS="--build-arg DEFAULT_AWX_VERSION=${{ github.event.inputs.default_awx_version }} \ --build-arg OPERATOR_VERSION=${{ github.event.inputs.version }}" \ IMAGE_TAG_BASE=ghcr.io/${{ github.repository_owner }}/awx-operator \ - VERSION=${{ github.event.inputs.version }} make docker-build docker-push + VERSION=${{ github.event.inputs.version }} \ + make docker-build docker-push bundle-build bundle-push catalog-build catalog-push - name: Run test deployment working-directory: awx-operator