-
Notifications
You must be signed in to change notification settings - Fork 3
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
Showing
1 changed file
with
7 additions
and
14 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 |
---|---|---|
|
@@ -71,15 +71,6 @@ jobs: | |
helm lint charts/testkube-cloud-api | ||
helm lint charts/testkube-enterprise | ||
- name: Commit & push changes | ||
run: | | ||
git config --global user.name "testkube-cloud-ci-bot" | ||
git config --global user.email "[email protected]" | ||
git status | ||
git add **/*Chart.yaml | ||
git commit -m "Updating helm-chart versions" | ||
git push | ||
- name: Install Helm Docs | ||
uses: envoy/[email protected] | ||
with: | ||
|
@@ -90,9 +81,11 @@ jobs: | |
set -ex | ||
helm-docs | ||
- name: Commit Helm Docs | ||
- name: Commit & push changes | ||
run: | | ||
set -ex | ||
git add . | ||
git commit -m "Update helm docs" | ||
git push | ||
git config --global user.name "testkube-cloud-ci-bot" | ||
git config --global user.email "[email protected]" | ||
git status | ||
git add **/*Chart.yaml **/*README.md | ||
git commit -m "Updating helm-chart versions and README files" | ||
git push |