Skip to content

Commit

Permalink
desc
Browse files Browse the repository at this point in the history
  • Loading branch information
NorseGaud committed Jun 17, 2020
1 parent 040c659 commit 9225b4e
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,37 +6,37 @@ branding:
color: 'purple'
inputs:
anka-template:
description: 'name or UUID of your Anka Template'
description: '(string) (required) name or UUID of your Anka Template'
required: true
anka-tag:
description: 'name of Anka Tag (optional; defaults to latest tag)'
description: '(string) (optional) name of Anka Tag (optional; defaults to latest tag)'
anka-custom-vm-label:
description: 'label for the cloned VM that will execute your code (default: github-actions-${GITHUB_REPOSITORY}-${GITHUB_RUN_NUMBER}-${GITHUB_JOB}-${GITHUB_ACTION})'
description: '(string) (optional) label for the cloned VM that will execute your code (default: github-actions-${GITHUB_REPOSITORY}-${GITHUB_RUN_NUMBER}-${GITHUB_JOB}-${GITHUB_ACTION})'
commands:
description: 'commands you wish to run inside of the Anka VM'
description: '(multi-line string or regular string) (required) commands you wish to run inside of the Anka VM'
required: true
host-pre-commands:
description: 'commands you wish to run outside on the node (host) BEFORE preparation of and execution inside the VM'
description: '(string) (optional) commands you wish to run outside on the node (host) BEFORE preparation of and execution inside the VM'
host-post-commands:
description: 'commands you wish to run outside on the node (host) AFTER preparation of and execution inside the VM'
description: '(string) (optional) commands you wish to run outside on the node (host) AFTER preparation of and execution inside the VM'
anka-start-options:
description: 'options set for the anka start execution'
description: '(string) (optional) options set for the anka start execution'
anka-run-options:
description: 'options set for anka run execution'
description: '(string) (optional) options set for anka run execution'
anka-registry-pull-options:
description: 'options set for anka registry pull execution'
description: '(string) (optional) options set for anka registry pull execution'
host-command-options:
description: 'options to use for github actions exec command; must be a js object (do not use single quotes to wrap values; { key: "value" }) or JSON ({ "key": "value" }) inside of a string!\nSupported options: https://github.com/actions/toolkit/blob/master/packages/exec/src/interfaces.ts'
description: '(string; js object or JSON) (optional) options to use for github actions exec command; must be a js object (do not use single quotes to wrap values; { key: "value" }) or JSON ({ "key": "value" }) inside of a string!\nSupported options: https://github.com/actions/toolkit/blob/master/packages/exec/src/interfaces.ts'
lock-file-location:
description: 'location where the pull/clone lock file exists (defaults to /tmp)'
description: '(string) (optional) location where the pull/clone lock file exists (defaults to /tmp)'
artifact-files:
description: 'each file you wish to upload and include in the final artifact, newline separated'
description: '(multi-line string) (optional) each file you wish to upload and include in the final artifact, newline separated'
artifact-archive-file-name:
description: 'name of the artifact (archive) that contains all of the files specified in the artifact-files input (default: "artifact")'
description: '(string) (optional) name of the artifact (archive) that contains all of the files specified in the artifact-files input (default: "artifact")'
artifacts-root-directory:
description: 'an absolute or relative file path that denotes the root parent directory of the files being uploaded'
description: '(string) (optional) an absolute or relative file path that denotes the root parent directory of the files being uploaded'
skip-registry-pull:
description: 'skip the registry pull; useful if you do not have a registry or it is down and the Template + Tag are already on the node'
description: '(boolean) (optional) skip the registry pull; useful if you do not have a registry or it is down and the Template + Tag are already on the node'
outputs:
std:
description: 'the STDOUT and STDERR from the executed commands'
Expand Down

0 comments on commit 9225b4e

Please sign in to comment.