Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update build config #72

Merged
merged 1 commit into from
Jan 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
# Root directory for doing Ghidra work (building, etc.)
root: ["/tmp/ghidra"]
# Ghidra build version(s)
version: [10.4]
version: [11.0]
include:
- version: 10.4
release_url: "https://github.com/NationalSecurityAgency/ghidra/releases/download/Ghidra_10.4_build"
filename: "ghidra_10.4_PUBLIC_20230928.zip"
directory: "ghidra_10.4_PUBLIC"
- version: 11.0
release_url: "https://github.com/NationalSecurityAgency/ghidra/releases/download/Ghidra_11.0_build"
filename: "ghidra_11.0_PUBLIC_20231222.zip"
directory: "ghidra_11.0_PUBLIC"

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -48,4 +48,4 @@ jobs:
with:
name: ghidra_${{matrix.version}}_REAIT
path: dist/${{matrix.version}}/*
if-no-files-found: error
if-no-files-found: error
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
# Repository name ("reait-ghidra")
name: ["${{github.event.repository.name}}"]
# Ghidra build version(s)
version: [10.4]
version: [11.0]
include:
- version: 10.4
release_url: "https://github.com/NationalSecurityAgency/ghidra/releases/download/Ghidra_10.4_build"
filename: "ghidra_10.4_PUBLIC_20230928.zip"
directory: "ghidra_10.4_PUBLIC"
- version: 11.0
release_url: "https://github.com/NationalSecurityAgency/ghidra/releases/download/Ghidra_11.0_build"
filename: "ghidra_11.0_PUBLIC_20231222.zip"
directory: "ghidra_11.0_PUBLIC"

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -67,4 +67,4 @@ jobs:
- name: Upload release ZIP
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
run: gh release upload ${{github.event.release.tag_name}} dist/ghidra_${{matrix.version}}_${{matrix.name}}.zip
run: gh release upload ${{github.event.release.tag_name}} dist/ghidra_${{matrix.version}}_${{matrix.name}}.zip
Loading