-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
34 lines (31 loc) · 993 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
33
34
name: Setup latest .NET SDKs
author: Els_kom
description: Github Action to install the daily builds of the .NET SDK.
inputs:
VERSION_MAJOR:
description: Major version of the .NET SDK to install.
required: false
default: '7'
VERSION_MINOR:
description: Minor version of the .NET SDK to install.
required: false
default: '0'
VERSION_BAND:
description: Band version of the .NET SDK to install.
required: false
default: '1xx'
SDK_VERSION:
description: The version to use to override the input major, minor, and feature band of the .NET SDK to install.
required: false
default: ''
RUNTIME_VERSIONS:
description: The list of versions of the runtime to install.
required: false
# 7.0.0-rc2 currently lacks 6.0.10 because it's in preview.
default: '6.0.x'
runs:
using: node16
main: index.js
branding:
icon: download-cloud
color: blue