File tree Expand file tree Collapse file tree 3 files changed +17
-4
lines changed Expand file tree Collapse file tree 3 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 11name : build native libraries
22on :
33 workflow_dispatch : # allow to manually trigger this workflow
4- push :
5- branches :
6- - michael/github-actions-debug
4+ # push:
5+ # branches:
6+ # - michael/github-actions-debug
77jobs :
88 natives :
99 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 1+ name : release
2+ on :
3+ workflow_dispatch : # allow to manually trigger this workflow
4+ push :
5+ branches :
6+ - michael/github-actions-debug
7+ jobs :
8+ release :
9+ runs-on : ubuntu-latest
10+ steps :
11+ - uses : actions/download-artifact@v4
12+ - name : Display structure of downloaded files
13+ run : ls -R
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ rm -rf build
3333sed -i s/__RELEASE_NAME__/${MINOR_VERSION} / Ghidra/application.properties
3434
3535# build ghidra (we'll check and handle the exit code further down in case it fails...)
36- gradle buildGhidra
36+ gradle -I gradle/support/fetchDependencies.gradle buildGhidra
3737BUILD_EXIT_CODE=$?
3838
3939# revert the change we made above in application.properties: back to the placeholder
You can’t perform that action at this time.
0 commit comments