Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor Getz committed Dec 22, 2023
1 parent 23ded14 commit 2e21665
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ jobs:
git config --global user.name 'iits'
git config --global user.email '[email protected]'
git add plugin.yaml
ls
git commit -m "Update plugin.yaml with new version and checksums"
git add dist/iits-chart-creator_*
git commit -m "Update plugin.yaml with new version and binaries"
git push origin HEAD:main
16 changes: 8 additions & 8 deletions plugin_template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,25 @@ command: "$HELM_PLUGIN_DIR/iits-chart-creator"
platformCommand:
- os: darwin
arch: amd64
command: "$HELM_PLUGIN_DIR/iits-chart-creator_NEW_VERSION_darwin_amd64"
command: "$HELM_PLUGIN_DIR/dist/iits-chart-creator_darwin_amd64_v1/iits-chart-creator"
- os: darwin
arch: arm64
command: "$HELM_PLUGIN_DIR/iits-chart-creator_NEW_VERSION_darwin_arm64"
command: "$HELM_PLUGIN_DIR/dist/iits-chart-creator_linux_arm64/iits-chart-creator"
- os: linux
arch: "386"
command: "$HELM_PLUGIN_DIR/iits-chart-creator_NEW_VERSION_linux_386"
command: "$HELM_PLUGIN_DIR/dist/iits-chart-creator_linux_amd64_v1/iits-chart-creator"
- os: linux
arch: amd64
command: "$HELM_PLUGIN_DIR/iits-chart-creator_NEW_VERSION_linux_amd64"
command: "$HELM_PLUGIN_DIR/dist/iits-chart-creator_linux_386/iits-chart-creator"
- os: linux
arch: arm64
command: "$HELM_PLUGIN_DIR/iits-chart-creator_NEW_VERSION_linux_arm64"
command: "$HELM_PLUGIN_DIR/dist/iits-chart-creator_darwin_arm64/iits-chart-creator"
- os: windows
arch: "386"
command: "$HELM_PLUGIN_DIR/iits-chart-creator_NEW_VERSION_windows_386.exe"
command: "$HELM_PLUGIN_DIR/dist/iits-chart-creator_windows_amd64_v1/iits-chart-creator.exe"
- os: windows
arch: amd64
command: "$HELM_PLUGIN_DIR/iits-chart-creator_NEW_VERSION_windows_amd64.exe"
command: "$HELM_PLUGIN_DIR/dist/iits-chart-creator_windows_arm64/iits-chart-creator.exe"
- os: windows
arch: arm64
command: "$HELM_PLUGIN_DIR/iits-chart-creator_NEW_VERSION_windows_arm64.exe"
command: "$HELM_PLUGIN_DIR/dist/iits-chart-creator_windows_386/iits-chart-creator.exe"

0 comments on commit 2e21665

Please sign in to comment.