|
31 | 31 | id: meta |
32 | 32 | uses: docker/metadata-action@v5 |
33 | 33 | with: |
34 | | - images: ghcr.io/${{ github.repository_owner }}/ziit |
| 34 | + images: ghcr.io/${{ github.repository_owner | lowercase }}/ziit |
35 | 35 | tags: | |
36 | 36 | type=raw,value=${{ github.event_name == 'workflow_dispatch' && inputs.tag || github.ref_type == 'tag' && github.ref_name || 'nightly' }} |
37 | 37 | type=sha,format=short |
|
78 | 78 | context: . |
79 | 79 | platforms: ${{ matrix.platform }} |
80 | 80 | labels: ${{ needs.prepare.outputs.labels }} |
81 | | - outputs: type=image,name=ghcr.io/${{ github.repository_owner }}/ziit,push-by-digest=true,name-canonical=true,push=true |
| 81 | + outputs: type=image,name=ghcr.io/${{ github.repository_owner | lowercase }}/ziit,push-by-digest=true,name-canonical=true,push=true |
82 | 82 | cache-from: type=gha,scope=build-${{ env.PLATFORM_PAIR }} |
83 | 83 | cache-to: type=gha,mode=max,scope=build-${{ env.PLATFORM_PAIR }} |
84 | 84 |
|
@@ -125,10 +125,10 @@ jobs: |
125 | 125 | working-directory: /tmp/digests |
126 | 126 | run: | |
127 | 127 | docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \ |
128 | | - $(printf 'ghcr.io/${{ github.repository_owner }}/ziit@sha256:%s ' *) |
| 128 | + $(printf 'ghcr.io/${{ github.repository_owner | lowercase }}/ziit@sha256:%s ' *) |
129 | 129 | env: |
130 | 130 | DOCKER_METADATA_OUTPUT_JSON: ${{ needs.prepare.outputs.json }} |
131 | 131 |
|
132 | 132 | - name: Inspect image |
133 | 133 | run: | |
134 | | - docker buildx imagetools inspect ghcr.io/${{ github.repository_owner }}/ziit:${{ fromJSON(needs.prepare.outputs.json).labels['org.opencontainers.image.version'] }} |
| 134 | + docker buildx imagetools inspect ghcr.io/${{ github.repository_owner | lowercase }}/ziit:${{ fromJSON(needs.prepare.outputs.json).labels['org.opencontainers.image.version'] }} |
0 commit comments