You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
463 B
YAML
20 lines
463 B
YAML
name: "SCPSL.DownloadFiles"
|
|
description: "Downloads SCP: SL assembly files."
|
|
branding:
|
|
icon: file
|
|
color: blue
|
|
inputs:
|
|
filesToDownload:
|
|
description: "Files which will be downloaded."
|
|
required: true
|
|
branch:
|
|
description: "From which branch files will be downloaded."
|
|
required: false
|
|
runs:
|
|
using: "docker"
|
|
image: "Dockerfile"
|
|
args:
|
|
- "--filesToDownload"
|
|
- ${{ inputs.filesToDownload }}
|
|
- "--branch"
|
|
- ${{ inputs.branch }} |