forked from maxibor/conda-package-publish-action
-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
40 lines (39 loc) · 1.16 KB
/
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
32
33
34
35
36
37
38
39
40
name: 'Publish Conda package to Anaconda.org'
description: 'Build and Publish conda package to Anaconda'
author: 'Andrew Prokhorenkov, modified by Maxime Borry'
branding:
icon: 'package'
color: 'purple'
inputs:
subDir:
description: 'Sub-directory with conda recipe'
default: '.'
AnacondaToken:
description: 'Anaconda access Token'
channels:
description: 'Additional anaconda channels'
default: '{ -c conda-forge}'
publish:
description: 'Whether to publish to anaconda'
default: 'false'
convert_win:
description: 'Whether to convert linux build for windows'
default: 'false'
convert_osx:
description: 'Whether to convert linux build for osx'
default: 'false'
test_all:
description: 'Whether to build and test all recipe variants'
default: 'false'
test_pyver:
description: 'Default version of Python to test the package with'
default: '3.7'
test_npver:
description: 'Default version of NumPy to test the package with'
default: '1.18'
additional_apt_packages:
description: 'Additional packages to install in the Docker image'
default: ''
runs:
using: 'docker'
image: 'Dockerfile'