Skip to content

Commit

Permalink
Showing 3 changed files with 4 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/actions/check-new-releases/action.yml
Original file line number Diff line number Diff line change
@@ -38,8 +38,9 @@ runs:
yq e '.appVersion' $chart_path > container-version.txt
container_image=ghcr.io/matheuscscp/gke-metadata-server:$(cat container-version.txt)
yq e '.version' $chart_path > helm-version.txt
helm_image=oci://ghcr.io/matheuscscp/gke-metadata-server-helm
helm_version=$(yq e '.version' $chart_path)
helm_version=$(cat helm-version.txt)
container_exists=$(docker pull $container_image > /dev/null && echo yes || echo no)
helm_exists=$(helm pull $helm_image --version $helm_version > /dev/null && echo yes || echo no)
1 change: 0 additions & 1 deletion .github/actions/release-helm/action.yml
Original file line number Diff line number Diff line change
@@ -29,7 +29,6 @@ runs:
steps:
- run: |
helm push $(cat helm-package.txt) oci://${registry}/matheuscscp 2>&1 | tee helm-push.logs
cat helm-push.logs | grep Pushed: | awk '{print $NF}' | cut -d ":" -f2 > helm-version.txt
cat helm-push.logs | grep Digest: | awk '{print $NF}' > helm-digest.txt
echo "HELM_WITH_DIGEST=${image}@$(cat helm-digest.txt)" >> $GITHUB_ENV
shell: bash
4 changes: 2 additions & 2 deletions helm/gke-metadata-server/Chart.yaml
Original file line number Diff line number Diff line change
@@ -30,10 +30,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.6.0
version: 0.6.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "0.6.0"
appVersion: "0.6.1"

0 comments on commit e49a740

Please sign in to comment.