Skip to content

Commit a63c70c

Browse files
committed
fix dockerhub username placement
1 parent 6131df7 commit a63c70c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/docker-build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
outputs:
12-
DOCKER_IMAGE_NAME: devdull/${{ steps.build-image-name.outputs.DOCKER_IMAGE_NAME }}
12+
DOCKER_IMAGE_NAME: ${{ steps.build-image-name.outputs.DOCKER_IMAGE_NAME }}
1313
CODELINE: ${{ steps.build-image-name.outputs.CODELINE }}
1414
INSTANCE_NAME: ${{ steps.build-image-name.outputs.INSTANCE_NAME }}
1515
steps:
@@ -19,7 +19,7 @@ jobs:
1919
- name: Build Image Name
2020
id: build-image-name
2121
run: |
22-
echo DOCKER_IMAGE_NAME=$(echo ${{ github.event.repository.name }} | tr '[A-Z]' '[a-z]') | tee -a $GITHUB_ENV | tee -a $GITHUB_OUTPUT
22+
echo DOCKER_IMAGE_NAME=devdull/$(echo ${{ github.event.repository.name }} | tr '[A-Z]' '[a-z]') | tee -a $GITHUB_ENV | tee -a $GITHUB_OUTPUT
2323
echo CODELINE=$(echo ${{ github.ref_name }} | tr '[A-Z]' '[a-z]') | tee -a $GITHUB_ENV | tee -a $GITHUB_OUTPUT
2424
echo INSTANCE_NAME=${{ github.ref_name }}_InT | tee -a $GITHUB_ENV | tee -a $GITHUB_OUTPUT
2525

0 commit comments

Comments
 (0)