https://github.com/nikita-volkov/yc-cli.github-action
GitHub Action for executing any Yandex Cloud CLI command
https://github.com/nikita-volkov/yc-cli.github-action
github-actions yandex-cloud
Last synced: about 1 month ago
JSON representation
GitHub Action for executing any Yandex Cloud CLI command
- Host: GitHub
- URL: https://github.com/nikita-volkov/yc-cli.github-action
- Owner: nikita-volkov
- License: mit
- Created: 2022-09-14T16:45:46.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-11-17T19:03:02.000Z (almost 3 years ago)
- Last Synced: 2025-08-11T04:42:19.844Z (2 months ago)
- Topics: github-actions, yandex-cloud
- Language: Dockerfile
- Homepage:
- Size: 12.7 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Summary
GitHub Action for executing any Yandex Cloud CLI command.
Automates installation and configuration of CLI and runs quickly.
# Inputs
- `key` - YC service account key
- `args` - Arguments to the `yc` command# Outputs
- `output` - Command output
# Example
```yaml
- name: Make the container public
uses: nikita-volkov/yc-cli.github-action@v1.0.0
with:
key: ${{ secrets.SA_DEPLOYER_PRIVATE_KEY }}
args: serverless container --id ${{ steps.deploy.outputs.id }} allow-unauthenticated-invoke
```