diff --git a/.gitignore b/.gitignore index b23a8e2d..d91cd4b8 100644 --- a/.gitignore +++ b/.gitignore @@ -8,4 +8,4 @@ _dist .DS_Store -plugin.yaml +helm-plugin.yaml diff --git a/.goreleaser.yml b/.goreleaser.yml index 09f29794..35465272 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -20,7 +20,7 @@ builds: archives: - files: - README.md - - plugin.yaml + - helm-plugin.yaml changelog: sort: asc diff --git a/install_plugin.sh b/install_plugin.sh index 4288254d..d2ede762 100755 --- a/install_plugin.sh +++ b/install_plugin.sh @@ -38,5 +38,5 @@ fi tar xzf "releases/${version}.tar.gz" -C "releases/${version}" mv "releases/${version}/helm3-unittest" "bin/unittest" || \ mv "releases/${version}/helm3-unittest.exe" "bin/unittest" -mv "releases/${version}/plugin.yaml" . +mv "releases/${version}/helm-plugin.yaml" plugin.yaml mv "releases/${version}/README.md" . diff --git a/plugin.tmpl b/plugin.yaml similarity index 100% rename from plugin.tmpl rename to plugin.yaml diff --git a/update_version.sh b/update_version.sh index 6463da41..fbeef365 100755 --- a/update_version.sh +++ b/update_version.sh @@ -3,5 +3,5 @@ # script used by goreleaser - see .goreleaser.yml version="$(git describe --tags --exact-match 2>/dev/null)" -cp plugin.tmpl plugin.yaml -echo "version: ${version:1}" >> plugin.yaml +cp plugin.yaml helm-plugin.yaml +echo "version: ${version:1}" >> helm-plugin.yaml