-
Notifications
You must be signed in to change notification settings - Fork 3
/
action.yml
31 lines (31 loc) · 835 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: 'Setup SourcePawn Compiler'
author: 'rumblefrog'
description: 'Install and setup SourcePawn compiler'
inputs:
version:
description: 'Version of SP compiler'
required: true
default: '1.10.x'
version-file:
description: 'File to parse to get the version of the plugin'
required: false
default: ''
define-name:
description: 'Name of the define for the version of the plugin if you are using one'
required: false
default: ''
no-spcomp-proxy:
description: 'Whether spcomp should not be proxied to fix relative include path'
required: false
default: 'false'
outputs:
version:
description: 'Version of the SP compiler used'
version-file:
description: 'Version of the .sp file'
runs:
using: 'node20'
main: 'lib/index.js'
branding:
icon: 'command'
color: 'blue'