-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
32 lines (30 loc) · 889 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
32
name: "Publish to Dynamis"
description: "Publish a new version of a plugin to Dynamis"
inputs:
plugin_id:
description: "The plugin ID in Dynamis"
required: true
internal_name:
description: "The internal name of the plugin in Dynamis"
required: true
version_number:
description: "The version number, e.g. `1.2.3.4`"
required: true
path:
description: "The path to the plugin zip file"
required: true
type:
description: "The type of version; `latest` or `testing`"
default: "testing"
game_version:
description: "The game version"
default: "any"
dalamud_version:
description: "The Dalamud version"
default: "9"
changelog:
description: "The changelog for the version"
default: ""
runs:
using: "node20"
main: "dist/index.js"