-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
32 lines (30 loc) · 1.15 KB
/
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: "Download integrations for unity"
description: "Download platform sdk integrations as part of creating unity images for build process"
author: Justin Li
inputs:
environment-folder-id:
description: 'ID of environment folder for project'
type: string
required: true
platforms:
description: 'Platforms to download files for.' #formatted as: '["platform1","platform2",...]'
type: string
required: true
runner-name:
description: 'Runner to download files to'
type: string
required: true
reuse-downloads:
description: Whether to clear and redownload environment files from google drive. If true, will use already downloaded files where possible
type: boolean
required: true
outputs:
installer-dict:
description: "Powershell hash table with key being name of platform, and value being array of paths of installers to run"
value: ${{ jobs.download-env-files.outputs.installer-dict }}
downloads-path:
description: "Path to folder where environment files were downloaded and extracted"
value: ${{ jobs.download-env-files.outputs.downloads-path }}
runs:
using: docker
image: "Dockerfile"