Skip to content

Commit

Permalink
CI: workflow_dispatch: added ability to specify versions
Browse files Browse the repository at this point in the history
  • Loading branch information
SmileyAG authored Sep 13, 2024
1 parent 9958d67 commit 2dc42af
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ on:
push:
pull_request:
workflow_dispatch:
inputs:
ghidra_version:
description: 'Specify the Ghidra version(s) you want to build for (e.g. "latest", "10.1.5")'
required: true
default: '"latest"'
schedule:
- cron: '0 0 1 * *' # Monthly
permissions:
Expand All @@ -14,8 +19,7 @@ jobs:

strategy:
matrix:
ghidra:
- "latest"
ghidra: ${{ fromJSON(format('[{0}]', inputs.ghidra_version || '"latest"')) }}

steps:
- name: Clone Repository
Expand Down

0 comments on commit 2dc42af

Please sign in to comment.