-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4e27cfb
commit dc7428c
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Cloudify CLI | ||
author: Isaac Shabtay & Jaroslaw Rzeszutek | ||
description: Runs a generic Cloudify CLI command. | ||
branding: | ||
icon: cloud | ||
color: white | ||
inputs: | ||
command: | ||
description: Command to run | ||
required: true | ||
set-output: | ||
description: | | ||
Whether the CLI command's output should be stored as an | ||
Action output. If `true`, then the CLI command's output will not be | ||
echoed to the console. | ||
required: true | ||
default: "true" | ||
runs: | ||
using: docker | ||
image: docker://ahmadiesa/cloudify-cli:6.3.0 | ||
entrypoint: cfyci | ||
args: | ||
- cli | ||
- '--command' | ||
- ${{ inputs.command }} | ||
- '--set-output' | ||
- ${{ inputs.set-output }} |