Skip to content

Commit c3313a0

Browse files
committed
try downloading artifact
1 parent ae879a5 commit c3313a0

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

.github/workflows/build-natives.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: build native libraries
22
on:
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
77
jobs:
88
natives:
99
runs-on: ubuntu-latest

.github/workflows/release.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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

ghidra-publish.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ rm -rf build
3333
sed -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
3737
BUILD_EXIT_CODE=$?
3838

3939
# revert the change we made above in application.properties: back to the placeholder

0 commit comments

Comments
 (0)