forked from brenocq/cmake-dependency-submission
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
25 lines (25 loc) · 902 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
name: 'CMake Dependency Submission'
description: 'Calculates dependencies for a CMake project and submits the list to the GitHub Dependency Submission API'
author: 'Breno Cunha Queiroz'
branding:
icon: 'check-circle'
color: 'blue'
inputs:
token:
description: "GitHub Personal Access Token (PAT). Defaults to PAT provided by Action runner"
default: ${{ github.token }}
required: false
sourcePath:
description: "Path to source tree containing CMakeLists.txt and *.cmake files"
default: "${{ github.workspace }}"
required: false
scanMode:
description: "How to find CMake files; supported values are 'glob' or 'configure'. See README.md for more information"
default: 'glob'
required: false
buildPath:
description: "Path to the pre-configured build tree; only used in 'configure' mode"
required: false
runs:
using: 'node20'
main: 'dist/index.js'