Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/daisaru11/setup-cd-tools
A Github Action to set up a variety of tools for Continuous Delivery.
https://github.com/daisaru11/setup-cd-tools
continuous-delivery github-actions
Last synced: 2 months ago
JSON representation
A Github Action to set up a variety of tools for Continuous Delivery.
- Host: GitHub
- URL: https://github.com/daisaru11/setup-cd-tools
- Owner: daisaru11
- License: mit
- Created: 2020-01-22T14:17:40.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-24T06:41:54.000Z (almost 2 years ago)
- Last Synced: 2024-10-31T10:44:18.315Z (2 months ago)
- Topics: continuous-delivery, github-actions
- Language: TypeScript
- Homepage:
- Size: 156 KB
- Stars: 9
- Watchers: 2
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
A Github Action to set up a variety of tools for Continuous Delivery.
## Supported Tools
- [jq](https://stedolan.github.io/jq/)
- [yq](https://github.com/mikefarah/yq)
- kubectl
- [kustomize](https://github.com/kubernetes-sigs/kustomize)
- [skaffold](https://github.com/GoogleContainerTools/skaffold)
- [helm](https://github.com/helm/helm)
- [hub](https://github.com/github/hub)## Usage
```
name: Deployment
on: [push]
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
...
- name: Set up tools
uses: daisaru11/setup-cd-tools@v1
with:
kubectl: '1.6.0'
kustomize: '3.5.4'
...
```