diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2a20d2c..aa7f1ef 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,6 +10,7 @@ jobs: strategy: matrix: ghidra: + - "11.2" - "11.1.2" - "11.1.1" - "11.1" @@ -43,13 +44,13 @@ jobs: version: ${{ matrix.ghidra }} - name: Build - run: gradle buildExtension -PGHIDRA_INSTALL_DIR=${{ env.GHIDRA_INSTALL_DIR }} + run: gradle buildExtension - name: Upload artifacts uses: actions/upload-artifact@v4 with: name: DeviceTreeBlob_Ghidra_${{ matrix.ghidra }} - path: dist/*GhidraDeviceTreeBlob.zip + path: dist/*.zip release: runs-on: "ubuntu-latest" @@ -71,7 +72,7 @@ jobs: automatic_release_tag: "latest" prerelease: true title: "Ghidra DeviceTreeBlob Nightly (${{steps.date.outputs.date}})" - files: DeviceTreeBlob_Ghidra_*/*GhidraDeviceTreeBlob.zip + files: DeviceTreeBlob_Ghidra_*/*.zip - name: Release stable if: contains(github.ref, 'refs/tags/v') @@ -80,4 +81,4 @@ jobs: repo_token: "${{ secrets.GITHUB_TOKEN }}" prerelease: false title: "Ghidra DeviceTreeBlob ${{github.ref_name}}" - files: DeviceTreeBlob_Ghidra_*/*GhidraDeviceTreeBlob.zip + files: DeviceTreeBlob_Ghidra_*/*.zip