File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 17
17
if : ${{ (github.event_name == 'schedule') || (github.event_name == 'workflow_dispatch') }}
18
18
run : echo '::set-output name=RUN_BUILD::'$(test -n "$(git log --format=%H --since='24 hours ago')" && echo 'true' || echo 'false')
19
19
20
+ # Builds documentation pdf file and uploads artifact to docs
20
21
build-documentation :
21
- name : Build documentation and upload to natives
22
+ name : Build documentation
22
23
needs : [ verify_commit ]
23
24
if : ${{ needs.verify_commit.outputs.RUN_BUILD == 'true' }}
24
25
runs-on : ubuntu-latest
39
40
name : docs
40
41
path : cli/target/package/*.pdf
41
42
42
-
43
+ # Downloads documentation, builds all native images, archives native images and documentation and uploads artifacts to f.e. natives-windows-latest
43
44
build-natives :
44
- name : Build native images with downloaded documentation
45
+ name : Build native images
45
46
needs : [ verify_commit, build-documentation ]
46
47
if : ${{ needs.verify_commit.outputs.RUN_BUILD == 'true' }}
47
48
runs-on : ${{ matrix.os }}
74
75
name : natives-${{ matrix.os }}
75
76
path : cli/target/*.tar.gz
76
77
78
+ # Downloads all native image artifacts and builds the project for deployment to OSS Nexus
77
79
deploy :
78
80
name : Build Project and Deploy
79
81
needs : [ verify_commit, build-documentation, build-natives ]
You can’t perform that action at this time.
0 commit comments