Skip to content

Commit 02de284

Browse files
authored
fix: fix for E2E not running for contributors (#4504)
1 parent 5fa55da commit 02de284

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/run-e2e-tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
uses: actions/checkout@v3
3939

4040
- name: Login to GitHub Container Registry
41-
if: ${{ inputs.is-fork != 'true' }}
41+
if: ${{ inputs.is-fork != true }}
4242
uses: docker/login-action@v2
4343
with:
4444
registry: ghcr.io
@@ -88,12 +88,12 @@ jobs:
8888
8989
# For forks: Build images locally again since they don't persist between jobs
9090
- name: Set up Docker Buildx
91-
if: ${{ inputs.is-fork == 'true' }}
91+
if: ${{ inputs.is-fork == true }}
9292
id: buildx
9393
uses: docker/setup-buildx-action@v2
9494

9595
- name: Rebuild frontend image locally for fork PRs
96-
if: ${{ inputs.is-fork == 'true' }}
96+
if: ${{ inputs.is-fork == true }}
9797
uses: docker/build-push-action@v4
9898
with:
9999
context: keep-ui
@@ -108,7 +108,7 @@ jobs:
108108
BUILDKIT_INLINE_CACHE=1
109109
110110
- name: Rebuild backend image locally for fork PRs
111-
if: ${{ inputs.is-fork == 'true' }}
111+
if: ${{ inputs.is-fork == true }}
112112
uses: docker/build-push-action@v4
113113
with:
114114
context: .

0 commit comments

Comments
 (0)