Skip to content

Commit

Permalink
Create action.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmadiesa-abu authored Feb 1, 2022
1 parent 4e27cfb commit dc7428c
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions action.yaml
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 }}

0 comments on commit dc7428c

Please sign in to comment.