Skip to content
This repository was archived by the owner on Oct 18, 2024. It is now read-only.

Commit 9c184cb

Browse files
committed
chore(workflow): remove dependency on connected checks job from publish job
1 parent 0355b98 commit 9c184cb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,15 +224,14 @@ jobs:
224224
publish:
225225
name: Publish release
226226
runs-on: ubuntu-latest
227-
needs: [ build_apk, run_unit_tests, run_tooling_api_tests, run_connected_checks ]
227+
needs: [ build_apk, run_unit_tests, run_tooling_api_tests ]
228228
if: |
229229
always()
230230
&& github.ref == 'refs/heads/main'
231231
&& github.event_name != 'pull_request'
232232
&& needs.build_apk.result == 'success'
233233
&& needs.run_unit_tests.result == 'success'
234234
&& needs.run_tooling_api_tests.result == 'success'
235-
&& needs.run_connected_checks.result == 'success'
236235
steps:
237236
- name: Checkout
238237
uses: actions/checkout@v4

0 commit comments

Comments
 (0)