-
Notifications
You must be signed in to change notification settings - Fork 9
66 lines (56 loc) · 1.69 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: Ghidra NSIS Extension Build
env:
ghidra-url: https://github.com/NationalSecurityAgency/ghidra/releases/download/Ghidra_11.0_build/ghidra_11.0_PUBLIC_20231222.zip
ghidra-zip-filename: ghidra_11.0_PUBLIC_20231222.zip
ghidra-directory: ghidra_11.0_PUBLIC
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
release:
types: [ created ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Download Ghidra release
uses: carlosperate/download-file-action@v1.0.3
id: download-ghidra
with:
file-url: ${{ env.ghidra-url }}
file-name: ${{ env.ghidra-zip-filename }}
- name: Unzip Ghidra
uses: TonyBogdanov/zip@1.0
with:
args: unzip -qq ${{ steps.download-ghidra.outputs.file-path }} -d .
- uses: actions/setup-java@v1
with:
java-version: '18.0.2'
- name: Build extension
uses: eskatos/gradle-command-action@v1
with:
gradle-version: '7.3'
build-root-directory: ${{ github.workspace }}/nsis
arguments: '-PGHIDRA_INSTALL_DIR=${{ github.workspace }}/${{ env.ghidra-directory }}'
- name: Upload built extension
uses: actions/upload-artifact@v2
with:
name: extension
path: nsis/dist/*.zip
release:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'release' }}
needs: build
steps:
- name: Download built extension
uses: actions/download-artifact@v2
with:
name: extension
- name: Upload extension to release
uses: skx/github-action-publish-binaries@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: '*.zip'