Skip to content

Commit

Permalink
Merge pull request #16 from conduktor/fix_docker_image
Browse files Browse the repository at this point in the history
Fix docker ctl image name
  • Loading branch information
strokyl authored Mar 11, 2024
2 parents 37af6c1 + 9149507 commit d10c1d6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ jobs:
id-token: write
contents: read
env:
IMAGE_NAME: "conduktorctl"
HARBOR_IMAGE: "harbor.cdkt.dev/conduktor/conduktorctl"
IMAGE_NAME: "conduktor-ctl"
HARBOR_IMAGE: "harbor.cdkt.dev/conduktor/conduktor-ctl"
LABEL_IMAGE_TITLE: "Conduktor ctl"
LABEL_IMAGE_DESCRIPTION: "Conduktor command line tools"
LABEL_IMAGE_URL: "https://hub.docker.com/r/conduktor/conduktorctl"
LABEL_IMAGE_URL: "https://hub.docker.com/r/conduktor/conduktor-ctl"
steps:
- name: Set up Docker Buildx
id: setup-buildx
Expand Down Expand Up @@ -83,4 +83,4 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
build-args: |
hash=${{ github.sha }}
version=${{ github.event.release.tag_name || github.ref_name }}
version=${{ github.event.release.tag_name || github.ref_name }}
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: run test
run: ./test_final_exec.sh
build-docker:
name: Build and publish conduktorctl images
name: Build and publish conduktor-ctl images
uses: ./.github/workflows/build-docker.yml
secrets: inherit
needs: [unit-test, integration-test]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
project_path: "./"
binary_name: "conduktor"
build-docker:
name: Build and publish conduktorctl images
name: Build and publish conduktor-ctl images
uses: ./.github/workflows/build-docker.yml
secrets: inherit
needs: [tags, unit-test, integration-test]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ https://github.com/conduktor/ctl/releases
```
How to get the latest docker image:
```
docker pull harbor.cdkt.dev/conduktor/conduktorctl
docker pull harbor.cdkt.dev/conduktor/conduktor-ctl
```

How to build:
Expand Down

0 comments on commit d10c1d6

Please sign in to comment.