mirror of
https://github.com/Luzifer/go-latestver.git
synced 2024-11-08 15:10:04 +00:00
16 lines
503 B
Bash
Executable file
16 lines
503 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
chart_yaml=charts/latestver/Chart.yaml
|
|
|
|
# Patch latest App-Version into Chart
|
|
yq -iP ".appVersion = \"v${TAG_VERSION}\"" ${chart_yaml}
|
|
|
|
# Validate there has been a change before patching the chart version
|
|
git diff --exit-code -- ${chart_yaml} >/dev/null && exit 0 || true
|
|
|
|
# There were changes, we need to patch the chart version
|
|
chart_ver=$(yq '.version' ${chart_yaml})
|
|
yq -iP ".version = \"$(semver -i minor ${chart_ver})\"" ${chart_yaml}
|
|
|
|
git add ${chart_yaml}
|