Skip to content

Commit

Permalink
Fix Helm chart publishing (#849)
Browse files Browse the repository at this point in the history
* Update helm-chart.yml

* Update helm-chart.yml

* Update helm-chart.yml

* Update helm-chart.yml

* Update helm-chart.yml

* Update helm-chart.yml

* Update helm-chart.yml

* Update helm-chart.yml

* Update helm-chart.yml

* Update README.md
  • Loading branch information
badrishc authored Dec 4, 2024
1 parent c04d862 commit 687574d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/helm-chart.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
name: Garnet Helm Chart

on:
workflow_dispatch: # allow manual run
push:
branches:
- main
Expand Down Expand Up @@ -33,12 +36,12 @@ jobs:
- name: Set helm chart appVersion
run: |
sed -ie 's#Version.props#'"${VERSION_PROPS}"'#g' charts/garnet/Chart.yaml
sed -ie 's#Version.props#"${VERSION_PROPS}"#g' charts/garnet/Chart.yaml
- name: Helm lint and package
run: |
mkdir .cr-release-packages
for chart in $(find charts -depth 1 -type d); do
for chart in $(find charts -mindepth 1 -maxdepth 1 -type d); do
if [ -z "${chart:-}" ]; then
break
fi
Expand Down
4 changes: 2 additions & 2 deletions charts/garnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

![Version: 0.1.2](https://img.shields.io/badge/Version-0.1.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.0.46](https://img.shields.io/badge/AppVersion-1.0.46-informational?style=flat-square)

A Helm chart for Microsoft garnet
A Helm chart for Microsoft Garnet

**Homepage:** <https://github.com/microsoft/garnet>

Expand All @@ -15,7 +15,7 @@ A Helm chart for Microsoft garnet
[Helm](https://helm.sh) must be installed to use the charts. Please refer to
Helm's [documentation](https://helm.sh/docs) to get started.

To install the garnet chart (using an OCI-based registry):
To install the Garnet chart (using an OCI-based registry):

```sh
helm upgrade --install garnet oci://ghcr.io/microsoft/helm-charts/garnet
Expand Down

0 comments on commit 687574d

Please sign in to comment.