|
16 | 16 | env: |
17 | 17 | OS: linux |
18 | 18 | ARCH: ${{ matrix.arch }} |
19 | | - DOCKER_REPO: ghcr.io/${{ github.repository }} |
| 19 | + DOCKER_REPO: ghcr.io/${{ github.repository_owner }}/llm |
20 | 20 | DOCKER_SOURCE: github.com/${{ github.repository }} |
21 | 21 | outputs: |
22 | 22 | tag: ${{ steps.build.outputs.tag }} |
@@ -63,17 +63,17 @@ jobs: |
63 | 63 | password: ${{ secrets.GITHUB_TOKEN }} |
64 | 64 | - name: Create |
65 | 65 | run: | |
66 | | - docker manifest create ghcr.io/${{ github.repository }}:${{ matrix.tag }} \ |
67 | | - --amend ghcr.io/${{ github.repository }}-linux-amd64:${{ needs.build.outputs.tag }} \ |
68 | | - --amend ghcr.io/${{ github.repository }}-linux-arm64:${{ needs.build.outputs.tag }} |
| 66 | + docker manifest create ghcr.io/${{ github.repository_owner }}/llm:${{ matrix.tag }} \ |
| 67 | + --amend ghcr.io/${{ github.repository_owner }}/llm-linux-amd64:${{ needs.build.outputs.tag }} \ |
| 68 | + --amend ghcr.io/${{ github.repository_owner }}/llm-linux-arm64:${{ needs.build.outputs.tag }} |
69 | 69 | - name: Annotate |
70 | 70 | run: | |
71 | 71 | docker manifest annotate --arch amd64 --os linux \ |
72 | | - ghcr.io/${{ github.repository }}:${{ matrix.tag }} \ |
73 | | - ghcr.io/${{ github.repository }}-linux-amd64:${{ needs.build.outputs.tag }} |
| 72 | + ghcr.io/${{ github.repository_owner }}/llm:${{ matrix.tag }} \ |
| 73 | + ghcr.io/${{ github.repository_owner }}/llm-linux-amd64:${{ needs.build.outputs.tag }} |
74 | 74 | docker manifest annotate --arch arm64 --os linux \ |
75 | | - ghcr.io/${{ github.repository }}:${{ matrix.tag }} \ |
76 | | - ghcr.io/${{ github.repository }}-linux-arm64:${{ needs.build.outputs.tag }} |
| 75 | + ghcr.io/${{ github.repository_owner }}/llm:${{ matrix.tag }} \ |
| 76 | + ghcr.io/${{ github.repository_owner }}/llm-linux-arm64:${{ needs.build.outputs.tag }} |
77 | 77 | - name: Push |
78 | 78 | run: | |
79 | | - docker manifest push ghcr.io/${{ github.repository }}:${{ matrix.tag }} |
| 79 | + docker manifest push ghcr.io/${{ github.repository_owner }}/llm:${{ matrix.tag }} |
0 commit comments