-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6f3caf5
commit e7469ab
Showing
2 changed files
with
13 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters