-
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(clickhouse-monitoring): fix release (#178)
* feat(clickhouse-monitoring): add cronjob * fix(clickhouse-monitoring): fix type, add docs * fix(clickhouse-monitoring): cronjob api version for older k8s version * fix(clickhouse-monitoring): fix release
- Loading branch information
Showing
2 changed files
with
8 additions
and
5 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 |
---|---|---|
|
@@ -37,13 +37,16 @@ jobs: | |
|
||
- name: Commit files | ||
run: | | ||
DIST_DIR=.dist | ||
CURRENT_BRANCH=${GITHUB_REF#refs/heads/} | ||
TARGET_BRANCH=gh-pages | ||
REMOTE_REPO="https://${GITHUB_ACTOR}:${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git" | ||
set -x | ||
export DIST_DIR=.dist | ||
export CURRENT_BRANCH=${GITHUB_REF#refs/heads/} | ||
export TARGET_BRANCH=gh-pages | ||
export REMOTE_REPO="https://${GITHUB_ACTOR}:${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git" | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "Auto Release Bot" | ||
git checkout $TARGET_BRANCH | ||
git status | ||
git add $DIST_DIR | ||
git commit -m "[skip ci] Build and Publish Charts" | ||
|
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