Skip to content

Commit 2f9f710

Browse files
committed
Updated
1 parent ed2c3d5 commit 2f9f710

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/docker.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
env:
1717
OS: linux
1818
ARCH: ${{ matrix.arch }}
19-
DOCKER_REPO: ghcr.io/${{ github.repository }}
19+
DOCKER_REPO: ghcr.io/${{ github.repository_owner }}/llm
2020
DOCKER_SOURCE: github.com/${{ github.repository }}
2121
outputs:
2222
tag: ${{ steps.build.outputs.tag }}
@@ -63,17 +63,17 @@ jobs:
6363
password: ${{ secrets.GITHUB_TOKEN }}
6464
- name: Create
6565
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 }}
6969
- name: Annotate
7070
run: |
7171
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 }}
7474
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 }}
7777
- name: Push
7878
run: |
79-
docker manifest push ghcr.io/${{ github.repository }}:${{ matrix.tag }}
79+
docker manifest push ghcr.io/${{ github.repository_owner }}/llm:${{ matrix.tag }}

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ BUILD_LD_FLAGS += -X $(BUILD_MODULE)/pkg/version.GitBranch=$(shell git name-rev
2525
BUILD_FLAGS = -ldflags "-s -w ${BUILD_LD_FLAGS}"
2626

2727
# Docker
28-
DOCKER_REPO ?= ghcr.io/mutablelogic/go-llm
28+
DOCKER_REPO ?= ghcr.io/mutablelogic/llm
2929
DOCKER_SOURCE ?= ${BUILD_MODULE}
3030
DOCKER_TAG = ${DOCKER_REPO}-${OS}-${ARCH}:${VERSION}
3131

0 commit comments

Comments
 (0)