File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -27,19 +27,19 @@ jobs:
27
27
run : |
28
28
echo "CHECKOUT_REF=main" >> $GITHUB_ENV
29
29
echo "DOCKER_TAG=latest" >> $GITHUB_ENV
30
- echo "OUTPUT_TYPE=' type=registry' " >> $GITHUB_ENV
30
+ echo "OUTPUT_TYPE=type=registry" >> $GITHUB_ENV
31
31
- name : Define variable on release event
32
32
if : github.event_name == 'release'
33
33
run : |
34
34
echo "CHECKOUT_REF=${{ github.event.release.tag_name }}" >> $GITHUB_ENV
35
35
echo "DOCKER_TAG=${{ github.event.release.tag_name }}" >> $GITHUB_ENV
36
- echo "OUTPUT_TYPE=' type=registry' " >> $GITHUB_ENV
36
+ echo "OUTPUT_TYPE=type=registry" >> $GITHUB_ENV
37
37
- name : Define variables on workflow call
38
38
if : github.event_name != 'push' && github.event_name != 'release'
39
39
run : |
40
40
echo "CHECKOUT_REF=${{ inputs.ref }}" >> $GITHUB_ENV
41
41
echo "DOCKER_TAG=${{ inputs.tag }}" >> $GITHUB_ENV
42
- echo "OUTPUT_TYPE=' type=local,dest=artifacts' " >> $GITHUB_ENV
42
+ echo "OUTPUT_TYPE=type=local,dest=artifacts" >> $GITHUB_ENV
43
43
- uses : actions/checkout@v4
44
44
with :
45
45
ref : ${{ env.CHECKOUT_REF }}
You can’t perform that action at this time.
0 commit comments