Skip to content

bump to ghidra 11.0.3 #31

bump to ghidra 11.0.3

bump to ghidra 11.0.3 #31

Workflow file for this run

name: Main
on:
push:
tags:
- 'v*.*.*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.17
uses: actions/setup-java@v1
with:
java-version: 1.17
- uses: er28-0652/setup-ghidra@master
with:
version: "11.0.3"
- name: Build with Gradle
working-directory: ./GhidraJupyterKotlin
run: gradle buildExtension
- name: Debug github.ref
run: echo ${{github.ref}}
- name: Release
uses: softprops/action-gh-release@v1
with:
files: ./GhidraJupyterKotlin/dist/*zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}