Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim8y committed Oct 13, 2023
1 parent a652176 commit a71a215
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/test_plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,17 @@ on:
push:
branches: [check]
workflow_dispatch:
# Inputs the workflow accepts.
inputs:
ref:
description: 'Ref to build neo-modules [default: latest master;]'
required: false
default: 'master' # or 'main', depending on your default branch
name:
# Friendly description to be shown in the UI instead of 'name'
description: 'Person to greet'
# Default value if no value is explicitly provided
default: 'World'
# Input has to be provided for the workflow to run
required: true
# The data type of the input
type: string

jobs:
build-and-test:
Expand All @@ -25,7 +31,6 @@ jobs:
with:
repository: neo-project/neo-modules
path: ./neo-modules
ref: ${{ github.event.inputs.ref }}

- name: Patch neo-modules Directory.Build.props to use local neo
run: |
Expand Down

0 comments on commit a71a215

Please sign in to comment.