Skip to content

Commit

Permalink
fix missing plugin.yaml file
Browse files Browse the repository at this point in the history
  • Loading branch information
vbehar committed May 11, 2020
1 parent e30409f commit bd8f919
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ _dist

.DS_Store

plugin.yaml
helm-plugin.yaml
2 changes: 1 addition & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ builds:
archives:
- files:
- README.md
- plugin.yaml
- helm-plugin.yaml

changelog:
sort: asc
2 changes: 1 addition & 1 deletion install_plugin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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" .
File renamed without changes.
4 changes: 2 additions & 2 deletions update_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit bd8f919

Please sign in to comment.