-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
32 lines (28 loc) · 904 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: 'upload-workshop-item'
description: 'A GitHub Action to upload items to the Steam Workshop'
branding:
icon: 'upload-cloud'
color: 'blue'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.appID }}
- ${{ inputs.publishedFileID }}
- ${{ inputs.path }}
- ${{ inputs.changelog }}
inputs:
appID:
description: "The App ID of the game/app to upload to (https://steamcommunity.com/app/[APPID]/workshop)"
required: true
publishedFileID:
description: "The Workshop ID of your item (https://steamcommunity.com/sharedfiles/filedetails/?id=[WORKSHOPID])"
required: true
path:
description: "The path to the content to upload, relative to your repository's root. Omit to use your repository's root"
required: false
default: ''
changelog:
description: "An optional note to accompany your update"
required: false
default: ''