This repository has been archived by the owner on Oct 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: fixed path bug for windows version (#28)
- Loading branch information
Showing
9 changed files
with
524 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,12 @@ | ||
module github.com/belitre/helm-push-artifactory-plugin | ||
|
||
go 1.13 | ||
go 1.14 | ||
|
||
require ( | ||
github.com/Masterminds/semver v1.5.0 // indirect | ||
github.com/chartmuseum/helm-push v0.7.1 | ||
github.com/cyphar/filepath-securejoin v0.2.2 // indirect | ||
github.com/ghodss/yaml v1.0.0 // indirect | ||
github.com/gobwas/glob v0.2.3 // indirect | ||
github.com/golang/protobuf v1.3.2 // indirect | ||
github.com/jfrog/jfrog-client-go v0.5.2 | ||
github.com/pkg/errors v0.8.0 | ||
github.com/spf13/cobra v0.0.5 | ||
github.com/stretchr/testify v1.4.0 | ||
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect | ||
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect | ||
github.com/xeipuuv/gojsonschema v1.1.0 // indirect | ||
gopkg.in/yaml.v2 v2.2.2 | ||
helm.sh/helm v3.0.0-beta.3+incompatible | ||
k8s.io/api v0.0.0-20190927115716-5d581ce610b0 // indirect | ||
k8s.io/client-go v11.0.0+incompatible // indirect | ||
github.com/jfrog/jfrog-client-go v0.8.1 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/spf13/cobra v0.0.6 | ||
github.com/stretchr/testify v1.5.1 | ||
helm.sh/helm/v3 v3.1.1 | ||
k8s.io/apimachinery v0.17.3 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
name: "push-artifactory" | ||
version: "1.0.0" | ||
version: "1.0.1" | ||
usage: "Please see https://github.com/belitre/helm-push-artifactory-plugin for usage" | ||
description: "Push helm charts to artifactory" | ||
ignoreFlags: false | ||
useTunnel: false | ||
command: "$HELM_PLUGIN_DIR/bin/helm-push-artifactory" | ||
hooks: | ||
install: "cd $HELM_PLUGIN_DIR; scripts/install_plugin.sh" | ||
update: "cd $HELM_PLUGIN_DIR; scripts/install_plugin.sh" | ||
update: "cd $HELM_PLUGIN_DIR; scripts/install_plugin.sh" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters