File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 9
9
build :
10
10
runs-on : ubuntu-latest
11
11
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 }}
13
13
CODELINE : ${{ steps.build-image-name.outputs.CODELINE }}
14
14
INSTANCE_NAME : ${{ steps.build-image-name.outputs.INSTANCE_NAME }}
15
15
steps :
19
19
- name : Build Image Name
20
20
id : build-image-name
21
21
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
23
23
echo CODELINE=$(echo ${{ github.ref_name }} | tr '[A-Z]' '[a-z]') | tee -a $GITHUB_ENV | tee -a $GITHUB_OUTPUT
24
24
echo INSTANCE_NAME=${{ github.ref_name }}_InT | tee -a $GITHUB_ENV | tee -a $GITHUB_OUTPUT
25
25
You can’t perform that action at this time.
0 commit comments