https://github.com/cloudify-cosmo/cli-action
https://github.com/cloudify-cosmo/cli-action
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/cloudify-cosmo/cli-action
- Owner: cloudify-cosmo
- Created: 2020-10-12T20:39:57.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-10-05T11:49:44.000Z (over 3 years ago)
- Last Synced: 2025-09-23T09:38:29.219Z (8 months ago)
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Runs a generic Cloudify CLI command.
# Environment Variables
This Action uses the Cloudify Profile environment variables described in the official
Cloudify documentation (see [More Information](#more-information) below).
# Inputs
| Name | Description
|------|------------
| `command` | The CLI command to run.
| `set-output` | If set to `true`, then a GitHub output called `cli-output` is set with the CLI command's `stdout` contents.
## Notes
The string provided through the `command` input is provided as-is to the Cloudify CLI.
# Example
```yaml
jobs:
test_job:
steps:
- name: Run some command
uses: cloudify-cosmo/cli-action@v1.3
with:
command: "blueprints list"
```
# More Information
Refer to [Cloudify CLI Documentation](https://docs.cloudify.co/latest/cli/) for additional information about `cfy` command line.
Refer to [Cloudify CI/CD Integration](https://docs.cloudify.co/latest/working_with/integration/) for additional information about
Cloudify's integration with CI/CD tools.