-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
26 lines (23 loc) · 806 Bytes
/
action.yml
File metadata and controls
26 lines (23 loc) · 806 Bytes
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
author: "jnus"
branding:
icon: "box"
color: "green"
name: 'setup-al'
description: 'Download AL-Language vscode extention and setup path to alc in PATH.'
inputs:
Version: # current scope to render the variables for
description: 'Current version of the extension. E.g. 9.0.605172'
required: true
AlternativeDownloadUrl: # current scope to render the variables for
description: 'Alternative URL for downloading the vscode extension'
required: false
outputs:
random-number:
description: "Random number"
value: ${{ steps.random-number-generator.outputs.random-id }}
runs:
using: "composite"
steps:
- run: |
${{ github.action_path }}/src/Setup-AL.ps1 -version ${{inputs.version}} -alternativeDownloadUrl ${{inputs.AlternativeDownloadUrl}}
shell: pwsh