forked from gabrielfalcao/pyenv-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
31 lines (28 loc) · 785 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
name: 'Pyenv Build'
author: 'Gabriel Falcão'
description: 'Enables use of pyenv within build'
runs:
using: 'node16'
main: 'dist/index.js'
inputs:
command:
description: |
what command to execute for each python version, runs within the default shell
required: true
default:
description: |
what is the default python version, automatically installs this
version with pyenv even if not listed in the "versions" input.
required: false
versions:
description: |
A list of python versions to install with pyenv separated by
comma. (e.g.: 3.7, 3.8.16")
required: false
outputs:
pyenv_root:
description: |
the full filesystem path from this action
branding:
icon: 'terminal' # or 'sliders'
color: 'gray-dark'