Skip to content

Commit 8cfa4f2

Browse files
committed
Disable OCI push of helm chart due to missing quay repo
1 parent 53cd10b commit 8cfa4f2

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

.github/workflows/release.yaml

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -152,9 +152,10 @@ jobs:
152152
- name: Setup Helm
153153
uses: azure/setup-helm@v4
154154

155-
- name: Login to Quay.io for OCI Push
156-
if: startsWith(github.ref, 'refs/tags/')
157-
run: echo "${{ secrets.QUAY_ROBOT_TOKEN }}" | helm registry login quay.io -u ${{ secrets.QUAY_USERNAME }} --password-stdin
155+
# FIXME: We need a Repo Created in Quay ahead of time for this to work
156+
# - name: Login to Quay.io for OCI Push
157+
# if: startsWith(github.ref, 'refs/tags/')
158+
# run: echo "${{ secrets.QUAY_ROBOT_TOKEN }}" | helm registry login quay.io -u ${{ secrets.QUAY_USERNAME }} --password-stdin
158159

159160
- name: package helm chart
160161
run: |
@@ -165,12 +166,14 @@ jobs:
165166
cosign sign-blob -y \
166167
jetstack-charts/charts/version-checker-${{ needs.release-name.outputs.name }}.tgz \
167168
--bundle jetstack-charts/charts/version-checker-${{ needs.release-name.outputs.name }}.tgz.cosign.bundle
168-
- name: Push to Quay
169-
if: startsWith(github.ref, 'refs/tags/')
170-
run: |-
171-
helm push \
172-
jetstack-charts/charts/version-checker-${{ needs.release-name.outputs.name }}.tgz \
173-
oci://quay.io/jetstack/version-checker/chart
169+
170+
# FIXME: We need a Repo Created in Quay ahead of time for this to work
171+
# - name: Push to Quay
172+
# if: startsWith(github.ref, 'refs/tags/')
173+
# run: |-
174+
# helm push \
175+
# jetstack-charts/charts/version-checker-${{ needs.release-name.outputs.name }}.tgz \
176+
# oci://quay.io/jetstack/version-checker/chart
174177

175178
- name: Creating Publishing Chart's PR
176179
uses: peter-evans/create-pull-request@v7

0 commit comments

Comments
 (0)