Skip to content

Commit b8d8033

Browse files
committed
multiple files
1 parent 64c4d74 commit b8d8033

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

.github/workflows/release.yml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,21 @@ jobs:
2222
# - run: gradle -I gradle/support/fetchDependencies.gradle buildNatives
2323
- name: for simplicity just quickly create some dummy files
2424
run: |
25-
mkdir -p Ghidra/Features/Decompiler/build/os
26-
echo aaa > Ghidra/Features/Decompiler/build/os/decompile
27-
echo bbb > Ghidra/Features/Decompiler/build/os/sleigh
28-
- name: Upload decompiler
25+
mkdir -p Ghidra/Features/Decompiler/build/os/linux_x86_64
26+
mkdir -p Ghidra/Features/FileFormats/build/os/linux_x86_64
27+
mkdir -p GPL/DemanglerGnu/build/os/linux_x86_64
28+
echo aaa > Ghidra/Features/Decompiler/build/os/linux_x86_64/decompile
29+
echo bbb > Ghidra/Features/Decompiler/build/os/linux_x86_64/sleigh
30+
echo ccc > GPL/DemanglerGnu/build/os/linux_x86_64/demangler_gnu_v2_24
31+
echo ddd > GPL/DemanglerGnu/build/os/linux_x86_64/demangler_gnu_v2_41
32+
echo eee > Ghidra/Features/FileFormats/build/os/linux_x86_64/lzfse
33+
- name: Upload platform-specific binaries
2934
uses: actions/upload-artifact@v4
3035
with:
31-
path: Ghidra/Features/Decompiler/build/os/*
32-
if-no-files-found: error
36+
path: |
37+
GPL/DemanglerGnu/build/os/*
38+
Ghidra/Features/Decompiler/build/os/*
39+
Ghidra/Features/FileFormats/build/os/*
3340
release:
3441
runs-on: ubuntu-latest
3542
steps:

0 commit comments

Comments
 (0)