Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 715 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 715 Bytes

kli Action

A GitHub Action for installing the konstellation-io/kli CLI tool.

Inputs

For more information on inputs, see the API Documentation

  • version: The chart-testing version to install (default: v1.0-alpha.4)

Example Workflow

Create a workflow (eg: .github/workflows/lint-test.yaml):

name: Kli

on: push

jobs:
  install-kli:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v2
        with:
          fetch-depth: 0

      - name: Set up kli
        uses: blopezpi/action-kli@v1.0.0
        with:
          version: v1.0-alpha.4