diff --git a/.gitignore b/.gitignore index 7c43e305..876ab45d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ node_modules/ __tests__/runner/* -lib/ \ No newline at end of file +lib/ +dist/ \ No newline at end of file diff --git a/README.md b/README.md index 29856820..f367eed5 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - - uses: engineerd/setup-kind@v0.5.0 + - uses: engineerd/setup-kind@v0.6.0 - name: Testing run: | kubectl cluster-info @@ -48,12 +48,14 @@ Optional inputs: - `image`: node Docker image to use for booting the cluster. - `name`: cluster name (default `"kind"`) - `wait`: wait for control plane node to be ready (default `"300s"`) -- `kubeconfig`: sets kubeconfig path instead of $KUBECONFIG or $HOME/.kube/config +- `kubeconfig`: sets kubeconfig path instead of + $KUBECONFIG or + $HOME/.kube/config - `skipClusterCreation`: if `"true"`, the action will not create a cluster, just acquire the tools - `skipClusterDeletion`: if `"true"`, the action will not delete the cluster -- `skipClusterLogsExport`: if `"true"`, the action will not export the cluster logs - +- `skipClusterLogsExport`: if `"true"`, the action will not export the cluster + logs Example using optional inputs: @@ -66,7 +68,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - - uses: engineerd/setup-kind@v0.5.0 + - uses: engineerd/setup-kind@v0.6.0 with: version: "v0.11.1" - name: Testing diff --git a/package-lock.json b/package-lock.json index d20fee31..0c847263 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "setup-kind", - "version": "0.5.0", + "version": "0.6.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "setup-kind", - "version": "0.5.0", + "version": "0.6.0", "license": "MIT", "dependencies": { "@actions/artifact": "^0.6.1", diff --git a/package.json b/package.json index 021006af..e6f420dc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "setup-kind", - "version": "0.5.0", + "version": "0.6.0", "private": true, "description": "GitHub Action to setup KinD (Kubernetes in Docker)", "main": "lib/main.js",