Skip to content

Commit dad3c55

Browse files
committed
[fix]: broken action workflow failing to push image to registry
Summary: When taggig the images in build, we accidentaly tagged a writer image as reader, and tried to push a writter image which didn't exist. This caused the process to fail and the whole ci to halt with some nasty errors. This commit fixes that error
1 parent a0553c8 commit dad3c55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release-logger.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Build and Publish 'writter' image
3737
working-directory: 0x3-logger/writter
3838
run: |-
39-
docker build --tag "akhonya/reader:$GITHUB_SHA" .
39+
docker build --tag "akhonya/writter:$GITHUB_SHA" .
4040
docker push "akhonya/writter:$GITHUB_SHA"
4141
4242
- name: Set up Kustomize

0 commit comments

Comments
 (0)