Skip to content

Commit b97b264

Browse files
committed
fix: Update Docker image repository name in workflow
1 parent 196aee3 commit b97b264

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/docker-publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,29 +7,29 @@ on:
77
jobs:
88
docker:
99
runs-on: ubuntu-latest
10-
10+
1111
steps:
1212
- name: Checkout code
1313
uses: actions/checkout@v4
14-
14+
1515
- name: Set up Docker Buildx
1616
uses: docker/setup-buildx-action@v3
17-
17+
1818
- name: Login to Docker Hub
1919
uses: docker/login-action@v3
2020
with:
2121
username: ${{ secrets.DOCKERHUB_USERNAME }}
2222
password: ${{ secrets.DOCKERHUB_TOKEN }}
23-
23+
2424
- name: Extract metadata for Docker
2525
id: meta
2626
uses: docker/metadata-action@v5
2727
with:
28-
images: ${{ secrets.DOCKERHUB_REPO_USERNAME }}/gitlab-mcp
28+
images: iwakitakuma/gitlab-mcp
2929
tags: |
3030
type=semver,pattern={{version}}
3131
latest
32-
32+
3333
- name: Build and push Docker image
3434
uses: docker/build-push-action@v5
3535
with:

0 commit comments

Comments
 (0)