Skip to content

Commit d42081e

Browse files
devonfw#499: fixed needs
removed verify_commit
1 parent f57d837 commit d42081e

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/workflows/nightly-build.yml

+2-8
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ jobs:
66
# Builds documentation pdf file in cli/target/package and uploads artifact to docs
77
build-documentation:
88
name: Build documentation
9-
needs: [ verify_commit ]
10-
if: ${{ needs.verify_commit.outputs.RUN_BUILD == 'true' }}
119
runs-on: ubuntu-latest
1210
steps:
1311
- name: Checkout code
@@ -31,8 +29,7 @@ jobs:
3129
# Downloads documentation docs artifact, builds all native images, archives native image for each os with documentation pdf file and uploads artifacts to f.e. natives-windows-latest
3230
build-natives:
3331
name: Build native images
34-
needs: [ verify_commit, build-documentation ]
35-
if: ${{ needs.verify_commit.outputs.RUN_BUILD == 'true' }}
32+
needs: build-documentation
3633
runs-on: ${{ matrix.os }}
3734
strategy:
3835
matrix:
@@ -67,8 +64,7 @@ jobs:
6764
# Downloads all native image artifacts to cli/target and builds the project for deployment to OSSRH Nexus
6865
deploy:
6966
name: Build Project and Deploy
70-
needs: [ verify_commit, build-documentation, build-natives ]
71-
if: ${{ needs.verify_commit.outputs.RUN_BUILD == 'true' }}
67+
needs: [ build-documentation, build-natives ]
7268
runs-on: ubuntu-latest
7369
steps:
7470
- name: Checkout code
@@ -95,8 +91,6 @@ jobs:
9591

9692
check_status:
9793
runs-on: ubuntu-latest
98-
needs: verify_commit
99-
if: ${{ needs.verify_commit.outputs.RUN_BUILD == 'false' }}
10094
steps:
10195
- name: Check last workflow status
10296
id: check_status

0 commit comments

Comments
 (0)