Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build_spark-connect-client.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,4 @@ jobs:
# Since building Vector from source, this build runs out of disk space.
# As such, we use the Ubicloud runners which provide bigger disks.
runners: ubicloud
publish-to-quay: false
9 changes: 8 additions & 1 deletion .github/workflows/reusable_build_image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,18 @@ on:
- `ubicloud`: Both the x86_64 and the aarch64 builds run on the Ubicloud runners
default: mixed
type: string
publish-to-quay:
description: |
Whether to publish to quay.io or not. If `true`, the `quay-robot-secret` needs to be
provided.
type: boolean
default: true
secrets:
harbor-robot-secret:
description: The secret for the Harbor robot user used to push images and manifest
required: true
quay-robot-secret:
description: The secret for the Quay.io robot user used to push images and manifest
required: true
slack-token:
description: The Slack token used to post failure notifications
required: true
Expand Down Expand Up @@ -133,6 +138,7 @@ jobs:
source-image-uri: localhost/${{ inputs.registry-namespace }}/${{ inputs.product-name }}:${{ steps.build.outputs.image-manifest-tag }}

- name: Publish Container Image on quay.io
if: inputs.publish-to-quay
uses: stackabletech/actions/publish-image@8a8085be0a8cec3d24ad3970e602d65be487da6a # v0.14.1
with:
image-registry-uri: quay.io
Expand Down Expand Up @@ -179,6 +185,7 @@ jobs:
image-index-manifest-tag: ${{ matrix.versions }}-stackable${{ inputs.sdp-version }}

- name: Publish and Sign Image Index Manifest to quay.io
if: inputs.publish-to-quay
uses: stackabletech/actions/publish-image-index-manifest@8a8085be0a8cec3d24ad3970e602d65be487da6a # v0.14.1
with:
image-registry-uri: quay.io
Expand Down
Loading