Skip to content

Commit

Permalink
versions and actions update
Browse files Browse the repository at this point in the history
  • Loading branch information
stewartshea authored Jan 14, 2025
1 parent 6f3caf5 commit e7469ab
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,20 @@ jobs:
- name: Install Helm
uses: azure/setup-helm@v3

- name: Add Grafana Helm repository
- name: Add opentelemetry helm chart
run: helm repo add open-telemetry https://open-telemetry.github.io/opentelemetry-helm-charts

- name: Update Helm dependencies
run: helm dependency update ./charts/runwhen-local
run: |
helm dependency update ./charts/runwhen-local
if [[ `git status --porcelain` ]]; then
echo "Dependencies updated, committing changes."
git add ./charts/runwhen-local/Chart.lock
git commit -m "Update Chart.lock to match Chart.yaml [skip actions]"
git push
else
echo "No changes to Chart.lock."
fi
- name: Run chart-releaser
uses: helm/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions charts/runwhen-local/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: runwhen-local
description: A Helm chart RunWhen Local - A community powered troubleshooting cheat sheet
type: application
version: 0.2.8
appVersion: "0.8.1"
version: 0.2.9
appVersion: "0.8.6"
icon: https://storage.googleapis.com/runwhen-nonprod-shared-images/icons/runwhen_icon.png
dependencies:
# - name: grafana-agent
Expand Down

0 comments on commit e7469ab

Please sign in to comment.