-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
helm cr upload --skip-existing (#16)
Signed-off-by: liheng.zms <[email protected]>
- Loading branch information
Showing
1 changed file
with
4 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 |
---|---|---|
|
@@ -26,16 +26,17 @@ jobs: | |
- name: Configure Git | ||
run: | | ||
git config user.name "gh-actions" | ||
git config user.email "[email protected]" | ||
git config user.email "[email protected]" | ||
# This is required to consider the old Circle-CI Index and to stay compatible with all the old releases. | ||
- name: Fetch current Chart Index | ||
- name: Fetch current Chart Index | ||
run: | | ||
git checkout origin/gh-pages index.yaml | ||
- name: Run chart-releaser | ||
uses: helm/[email protected] | ||
with: | ||
with: | ||
charts_dir: charts | ||
config: "./.github/configs/cr.yaml" | ||
env: | ||
CR_TOKEN: "${{ secrets.GH_TOKEN }}" | ||
CR_SKIP_EXISTING: "true" |