File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -48,14 +48,14 @@ jobs:
48
48
shell : bash
49
49
50
50
- name : Login to Registry 🔐
51
- if : env.PUSH_TO_REGISTRY
51
+ if : env.PUSH_TO_REGISTRY == 'true'
52
52
uses : docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0
53
53
with :
54
54
registry : quay.io
55
55
username : ${{ secrets.REGISTRY_USERNAME }}
56
56
password : ${{ secrets.REGISTRY_TOKEN }}
57
57
58
58
- name : Merge tags for the images 🔀
59
- if : env.PUSH_TO_REGISTRY
59
+ if : env.PUSH_TO_REGISTRY == 'true'
60
60
run : python3 -m tagging.merge_tags --short-image-name ${{ inputs.image }} --tags-dir /tmp/jupyter/tags/
61
61
shell : bash
Original file line number Diff line number Diff line change 38
38
platform : ${{ inputs.platform }}
39
39
40
40
- name : Login to Registry 🔐
41
- if : env.PUSH_TO_REGISTRY
41
+ if : env.PUSH_TO_REGISTRY == 'true'
42
42
uses : docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0
43
43
with :
44
44
registry : quay.io
54
54
run : python3 -m tagging.apply_tags --short-image-name ${{ inputs.image }} --tags-dir /tmp/jupyter/tags/ --platform ${{ inputs.platform }} --registry ${{ env.REGISTRY }} --owner ${{ env.OWNER }}
55
55
56
56
- name : Push Images to Registry 📤
57
- if : env.PUSH_TO_REGISTRY
57
+ if : env.PUSH_TO_REGISTRY == 'true'
58
58
run : docker push --all-tags ${{ env.REGISTRY }}/${{ env.OWNER }}/${{ inputs.image }}
59
59
shell : bash
Original file line number Diff line number Diff line change 40
40
shell : bash
41
41
42
42
- name : Push Uncyclo to GitHub 📤
43
- if : env.PUSH_TO_REGISTRY
43
+ if : env.PUSH_TO_REGISTRY == 'true'
44
44
uses : stefanzweifel/git-auto-commit-action@8756aa072ef5b4a080af5dc8fef36c5d586e521d # v5.0.0
45
45
with :
46
46
commit_message : " Automated wiki publish for ${{ github.sha }}"
You can’t perform that action at this time.
0 commit comments