File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 38
38
uses : actions/checkout@v3
39
39
40
40
- name : Login to GitHub Container Registry
41
- if : ${{ inputs.is-fork != ' true' }}
41
+ if : ${{ inputs.is-fork != true }}
42
42
uses : docker/login-action@v2
43
43
with :
44
44
registry : ghcr.io
@@ -88,12 +88,12 @@ jobs:
88
88
89
89
# For forks: Build images locally again since they don't persist between jobs
90
90
- name : Set up Docker Buildx
91
- if : ${{ inputs.is-fork == ' true' }}
91
+ if : ${{ inputs.is-fork == true }}
92
92
id : buildx
93
93
uses : docker/setup-buildx-action@v2
94
94
95
95
- name : Rebuild frontend image locally for fork PRs
96
- if : ${{ inputs.is-fork == ' true' }}
96
+ if : ${{ inputs.is-fork == true }}
97
97
uses : docker/build-push-action@v4
98
98
with :
99
99
context : keep-ui
@@ -108,7 +108,7 @@ jobs:
108
108
BUILDKIT_INLINE_CACHE=1
109
109
110
110
- name : Rebuild backend image locally for fork PRs
111
- if : ${{ inputs.is-fork == ' true' }}
111
+ if : ${{ inputs.is-fork == true }}
112
112
uses : docker/build-push-action@v4
113
113
with :
114
114
context : .
You can’t perform that action at this time.
0 commit comments