Skip to content

Commit

Permalink
v3 new release (#196)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Jun 15, 2022
1 parent 17f5181 commit c68e134
Show file tree
Hide file tree
Showing 159 changed files with 8,186 additions and 2,144 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ name: "Run unit tests."
on: # rebuild any PRs and main branch changes
pull_request:
branches:
- master
- main
- "releases/*"
push:
branches:
- master
- main
- "releases/*"

jobs:
Expand Down
4 changes: 3 additions & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19888,7 +19888,9 @@ class Kubectl {
if (this.ignoreSSLErrors) {
args.push("--insecure-skip-tls-verify");
}
args = args.concat(["--namespace", this.namespace]);
if (this.namespace && this.namespace != "default") {
args = args.concat(["--namespace", this.namespace]);
}
core.debug(`Kubectl run with command: ${this.kubectlPath} ${args}`);
return yield exec_1.getExecOutput(this.kubectlPath, args, { silent });
});
Expand Down
64 changes: 41 additions & 23 deletions node_modules/.package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

47 changes: 0 additions & 47 deletions node_modules/lodash.memoize/LICENSE

This file was deleted.

18 changes: 0 additions & 18 deletions node_modules/lodash.memoize/README.md

This file was deleted.

Loading

0 comments on commit c68e134

Please sign in to comment.