-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
29 lines (25 loc) · 794 Bytes
/
Copy pathaction.yml
File metadata and controls
29 lines (25 loc) · 794 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
27
28
name: 'Setup Microchip XC Compiler'
description: 'Download and install Microchip XC compilers (xc8, xc16, xc32) for Linux on GitHub Actions Ubuntu runners'
author: Simon Domke
branding:
icon: 'download'
color: 'blue'
inputs:
compiler:
description: 'Compiler type to install (xc8, xc16, or xc32)'
required: true
version:
description: 'Compiler version to install (e.g., 3.10 for xc8, 2.10 for xc16, 5.00 for xc32)'
required: true
install-dir:
description: 'Installation directory for the compiler'
required: false
default: '/opt/microchip'
outputs:
install-dir:
description: 'Directory where the compiler was installed'
compiler-path:
description: 'Full path to the compiler binary directory'
runs:
using: 'node24'
main: 'dist/index.js'