Skip to content
Open
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
21 changes: 9 additions & 12 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,16 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Get short SHA
run: echo "SHORT_SHA=${GITHUB_SHA::7}" >> $GITHUB_ENV
uses: actions/checkout@main

- name: Setup Java
uses: actions/setup-java@v4
uses: actions/setup-java@main
with:
java-version: ${{ matrix.java }}
distribution: temurin

- name: Setup Ghidra
uses: er28-0652/setup-ghidra@master
uses: antoniovazquezblanco/setup-ghidra@master
with:
version: ${{ matrix.ghidra }}

Expand All @@ -37,25 +34,25 @@ jobs:
run: ./gradlew

- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@main
with:
name: Ps3GhidraScripts_${{ matrix.ghidra }}
path: dist
path: dist/*.zip
retention-days: 7
if-no-files-found: error
archive: false

push_release:
if: |
if: |-
github.event_name == 'push' &&
github.repository == 'clienthax/Ps3GhidraScripts'
needs: build_extension
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@main

- name: Download artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@main
with:
path: artifacts
merge-multiple: true
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
org.gradle.parallel=true