-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaction.yml
41 lines (41 loc) · 1.48 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
33
34
35
36
37
38
39
40
41
name: "Setup Dev Drive"
description: "A GitHub Action to setup a Windows Dev Drive."
author: "samypr100"
branding:
icon: hard-drive
color: purple
inputs:
drive-size:
description: "Drive Size. Examples: 1GB, 3GB, 10GB."
default: "2GB"
drive-format:
description: "Drive Format. Examples: FAT, FAT32, exFAT, NTFS, ReFS."
default: "ReFS"
drive-path:
description: "Absolute or relative path to the Dev Drive storage location. Example: C:/path/to/my/dev_drive.vhdx"
default: "dev_drive.vhdx"
drive-type:
description: "Determines whether all space is allocated initially or over time. Example: Fixed or Dynamic."
default: "Dynamic"
mount-path:
description: "Specific mount location for the Dev Drive. Only compatible with NTFS or ReFS."
required: false
mount-if-exists:
description: "Supports mounting an existing VHDX located in `drive-path`, avoiding creation overhead."
default: "false"
workspace-copy:
description: "Copy your GITHUB_WORKSPACE checkout to your Dev Drive. Examples: true, false."
default: "false"
native-dev-drive:
description: "Use native dev drive support when available."
default: "true"
trusted-dev-drive:
description: "Use to mark a native dev drive as trusted."
default: "false"
env-mapping:
description: "Allows mapping environment variables generated by this action to new user-defined ones."
required: false
runs:
using: "node20"
main: "dist/setup/index.js"
post: "dist/cleanup/index.js"