Skip to content

Commit e4663ba

Browse files
committed
Fix ci-success job dependency on version-check
- Add version-check to needs array in ci-success job - Ensure version-check.result is properly accessible - Fix empty string evaluation causing false failures
1 parent 6838adc commit e4663ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
# Final status check
2424
ci-success:
2525
runs-on: ubuntu-latest
26-
needs: [lint, test]
26+
needs: [lint, test, version-check]
2727
if: always()
2828
steps:
2929
- name: Check all jobs status

0 commit comments

Comments
 (0)