mirror of
https://github.com/kubernetes-sigs/external-dns.git
synced 2025-08-05 09:06:58 +02:00
* adds release script Signed-off-by: Raffaele Di Fazio <raffo@github.com> * save Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com> * scripts Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com> * update script Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com> * update docs Signed-off-by: Raffaele Di Fazio <difazio.raffaele@gmail.com> * Update releaser.sh
7 lines
187 B
Bash
Executable File
7 lines
187 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
sed -i -e "s/newTag: .*/newTag: $1/g" kustomize/kustomization.yaml
|
|
git add kustomize/kustomization.yaml
|
|
git commit -sm "updates kustomize with newly released version"
|