Skip to content

Commit

Permalink
Merge pull request #17 from master801/github-actions
Browse files Browse the repository at this point in the history
Set up automated builds
  • Loading branch information
pedro-javierf authored Apr 17, 2023
2 parents 2a23b12 + 071a636 commit f6a5289
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 1 deletion.
35 changes: 35 additions & 0 deletions .github/workflows/build_ntrghidra.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build NTRGhidra
on:
release:
types:
- created
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: ${{vars.JDK_VERSION}}
distribution: 'temurin' # Eclipse JDK
server-id: github
settings-path: ${{ github.workspace }}
- name: Setup Gradle
uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1
with:
gradle-version: ${{env.GRADLE_VERSION}}
- name: Setup Ghidra
uses: er28-0652/setup-ghidra@master
with:
version: ${{vars.GHIDRA_BUILD_VERSION}}
- name: Build
run: "gradle"
- name: Release
uses: shogo82148/actions-upload-release-asset@v1
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: "dist/ghidra_*_NTRGhidra.zip"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A Nintendo DS Loader for Ghidra

![NTRGhidra a Nintendo DS Loader for Ghidra](https://user-images.githubusercontent.com/16199912/56060896-12690380-5d36-11e9-802e-8c7e70cd481e.png)

Latest Ghidra versions supported: 10.2.2
Latest Ghidra versions supported: 10.2.3


# License
Expand Down
Binary file removed dist/ghidra_10.2.2_PUBLIC_20221207_NTRGhidra.zip
Binary file not shown.

0 comments on commit f6a5289

Please sign in to comment.