Skip to content

Commit

Permalink
Fix .
Browse files Browse the repository at this point in the history
  • Loading branch information
sandipchitale committed Jan 28, 2023
1 parent 554ffee commit 7e3eaaf
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
- run: npx tsc
- run: npm run pkg
- name: Create windows archive
run: cd helm-diff-releases-windows-amd64 && /bin/tar -cvzf ../helm-diff-releases-windows-amd64.tar.gz .
run: cd helm-diff-releases-windows-amd64 && /bin/tar -cvzf ../helm-diff-releases-windows-amd64.tar.gz *
- name: Create linux archive
run: cd helm-diff-releases-linux-amd64 && /bin/tar -cvzf ../helm-diff-releases-linux-amd64.tar.gz .
run: cd helm-diff-releases-linux-amd64 && /bin/tar -cvzf ../helm-diff-releases-linux-amd64.tar.gz *
- name: Upload windows archives
uses: actions/upload-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "diff-releases",
"version": "0.0.26",
"version": "0.0.27",
"description": "Helm plugin to run helm diff-releases command.",
"license": "SEE LICENSE IN LICENCE",
"main": "out/main.js",
Expand Down
2 changes: 1 addition & 1 deletion plugin.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: "diff-releases"
version: 0.0.26
version: 0.0.27
usage: "helm get templates "
description: |-
diff-releases WHAT [--code] --release1 RELEASE1 --revision1 R1 [--namespace1 NAMESPACE1] --release2 RELEASE2 --revision2 R2 [--namespace2 NAMESPACE2]
Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const YAML = require('json-to-pretty-yaml');

(async () => {
const diffUsage = `
diff-releases (v0.0.26)
diff-releases (v0.0.27)
The Kubernetes package manager custome commands:
Expand Down

0 comments on commit 7e3eaaf

Please sign in to comment.