We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bace7f commit 49cbb06Copy full SHA for 49cbb06
1 file changed
.github/workflows/build-image.yml
@@ -99,9 +99,14 @@ jobs:
99
🔗 ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
100
101
- name: Copiar imagem do GHCR para o Quay.io via Skopeo
102
+ env:
103
+ QUAY_USER: ${{ secrets.QUAY_USERNAME }}
104
+ QUAY_TOKEN: ${{ secrets.QUAY_ROBOT_TOKEN }}
105
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
106
run: |
107
skopeo copy \
- --src-creds "${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}" \
- --dest-creds "${{ secrets.QUAY_USERNAME }}:${{ secrets.QUAY_ROBOT_TOKEN }}" \
108
+ --src-creds "${{ github.actor }}:${GH_TOKEN}" \
109
+ --dest-username "${QUAY_USER}" \
110
+ --dest-password "${QUAY_TOKEN}" \
111
docker://ghcr.io/ferlinuxdebian/bootc-gnome-minimal:latest \
112
docker://quay.io/ferlinuxdebian/bootc-gnome-minimal:latest
0 commit comments