-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(actions): fixing yaml run that break action
- Loading branch information
1 parent
7d1856e
commit d5dee98
Showing
1 changed file
with
3 additions
and
3 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 |
---|---|---|
|
@@ -25,10 +25,10 @@ jobs: | |
git config user.email "[email protected]" | ||
- name: Lint Chart - Main chart | ||
run: helm lint . | ||
run: helm lint . | ||
|
||
- name: Update Dependencies | ||
run: helm dependency update . | ||
run: helm dependency update . | ||
|
||
- name: Update Chart and Values Versions | ||
run: | | ||
|
@@ -49,7 +49,7 @@ jobs: | |
- name: Deploy to GitHub Pages | ||
run: | | ||
git checkout gh-pages | ||
git pull origin main --rebase --autostash | ||
git pull origin main --rebase --autostash | ||
helm repo index . --url https://getlago.github.io/charts | ||
git add . | ||
git commit -m "Update Helm repo index for tag ${{ github.event.inputs.tag }}" | ||
|