-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
23 lines (23 loc) · 725 Bytes
/
action.yml
File metadata and controls
23 lines (23 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: '.NET nanoFramework build components installer'
description: 'Installs the components required to build .NET nanoFramework solutions'
author: '.NET nanoFramework Contributors'
branding:
icon: git-merge
color: purple
runs:
using: 'composite'
steps:
- run: '& $env:GITHUB_ACTION_PATH/install-nf-build-components.ps1'
shell: pwsh
env:
GITHUB_AUTH_TOKEN: ${{ inputs.gitHubAuth }}
USE_PREVIEW: ${{ inputs.usePreview }}
inputs:
gitHubAuth:
required: false
description: 'GitHub Personal Access Token for accessing GitHub API.'
default: ''
usePreview:
required: false
description: 'Set to true to install preview versions of the components.'
default: 'false'