Skip to content

daisaru11/setup-cd-tools

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

A Github Action to set up a variety of tools for Continuous Delivery.

Supported Tools

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'
      ...