-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update update-index to support cr 1.3.0
- Loading branch information
1 parent
52bd638
commit 64cab49
Showing
1 changed file
with
4 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# This makefile was authored against cr version 1.1.1 | ||
# This makefile was authored against cr version 1.3.0 | ||
|
||
|
||
.PHONY: helm-repo-add | ||
|
@@ -22,8 +22,11 @@ upload-release: | |
cr upload --config ./.cr.yaml --package-path .deploy | ||
|
||
# Before you run this target, make ensure you have the gh-pages branch locally. | ||
# cr expects the push URL to be https, so this make target will change the url temporarily. | ||
.PHONY: update-index | ||
update-index: | ||
git fetch --all | ||
cr package authgear | ||
git remote set-url origin https://github.com/authgear/helm-charts.git | ||
cr index --config ./.cr.yaml --push | ||
git remote set-url origin [email protected]:authgear/helm-charts.git |