Skip to content

Commit 882a2e5

Browse files
committed
Lint
1 parent e2fdc5f commit 882a2e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ jobs:
148148
name: Build Docker Image
149149
runs-on: ubuntu-latest
150150
needs: [changes, charts-release]
151-
if: (needs.changes.outputs.template == 'true' || needs.changes.outputs.charts == 'true')
151+
if: needs.changes.outputs.template == 'true' || needs.changes.outputs.charts == 'true'
152152
steps:
153153
- name: Checkout repository
154154
uses: actions/checkout@v3
@@ -159,7 +159,7 @@ jobs:
159159
name: Build E2B template
160160
runs-on: ubuntu-latest
161161
needs: [build-docker-image]
162-
if: (needs.changes.outputs.template == 'true' || needs.changes.outputs.charts == 'true')
162+
if: needs.changes.outputs.template == 'true' || needs.changes.outputs.charts == 'true'
163163
steps:
164164
- name: Checkout repository
165165
uses: actions/checkout@v3

0 commit comments

Comments
 (0)