Skip to content

Commit c7f3bf0

Browse files
[no ci] disable quay large image / bump latest
Commented out the Quay login step and its associated condition.
1 parent 6b94323 commit c7f3bf0

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/copy-full-image.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
env:
1313
SLUG: ${{ github.repository_owner }}/ubuntu
1414
PUSH_GHCR: ${{ github.repository == (github.event.pull_request.head.repo.full_name || github.repository) && '1' || '' }}
15-
PUSH_QUAY: ${{ secrets.QUAY_USER && secrets.QUAY_TOKEN && '1' || '' }}
15+
# PUSH_QUAY: ${{ secrets.QUAY_USER && secrets.QUAY_TOKEN && '1' || '' }}
1616
PUSH_DOCKER_HUB: ${{ secrets.DOCKER_USER && secrets.DOCKER_TOKEN && '1' || '' }}
1717

1818
defaults:
@@ -28,7 +28,7 @@ jobs:
2828
max-parallel: 1
2929
matrix:
3030
copy:
31-
- src: ghcr.io/christopherhx/runner-images:ubuntu22-runner-large-${{ inputs.version || 'latest' }}
31+
- src: ghcr.io/christopherhx/runner-images:ubuntu24-runner-large-${{ inputs.version || 'latest' }}
3232
dest: full-latest
3333
- src: ghcr.io/christopherhx/runner-images:ubuntu24-runner-large-${{ inputs.version || 'latest' }}
3434
dest: full-24.04
@@ -48,9 +48,9 @@ jobs:
4848
if: env.PUSH_GHCR
4949
run: skopeo copy -a --src-creds ${{ github.actor }}:${{ github.token }} --dest-creds ${{ github.actor }}:${{ github.token }} docker://${{ matrix.copy.src }} docker://ghcr.io/${{ env.SLUG }}:${{ matrix.copy.dest }}
5050

51-
- name: Login to Quay
52-
if: env.PUSH_QUAY
53-
run: skopeo copy -a --src-creds ${{ github.actor }}:${{ github.token }} --dest-creds ${{ secrets.QUAY_USER }}:${{ secrets.QUAY_TOKEN }} docker://${{ matrix.copy.src }} docker://quay.io/${{ env.SLUG }}:${{ matrix.copy.dest }}
51+
# - name: Login to Quay
52+
# if: env.PUSH_QUAY
53+
# run: skopeo copy -a --src-creds ${{ github.actor }}:${{ github.token }} --dest-creds ${{ secrets.QUAY_USER }}:${{ secrets.QUAY_TOKEN }} docker://${{ matrix.copy.src }} docker://quay.io/${{ env.SLUG }}:${{ matrix.copy.dest }}
5454

5555
- name: Login to Docker Hub
5656
if: env.PUSH_DOCKER_HUB

0 commit comments

Comments
 (0)