Point to dev-v2.6 and run make docs

pull/1198/head
Arvind Iyengar 2021-03-30 16:35:01 -07:00
parent aae93d0125
commit d0a006101b
No known key found for this signature in database
GPG Key ID: A8DD9BFD6C811498
4 changed files with 11 additions and 4 deletions

3
.gitignore vendored
View File

@ -1,2 +1,3 @@
bin
*.DS_Store
*.DS_Store
.idea

View File

@ -22,7 +22,7 @@ This repository branch contains a `configuration.yaml` file that is used to spec
#### Sync
This branch syncs with the generated assets from the following branches:
- dev-v2.5 at https://github.com/rancher/charts.git (only latest assets)
- dev-v2.6 at https://github.com/rancher/charts.git (only latest assets)
To release a new version of a chart, please open the relevant PRs to one of these branches.

View File

@ -2,7 +2,7 @@ template: live
sync:
- url: https://github.com/rancher/charts.git
branch: dev-v2.5
branch: dev-v2.6
dropReleaseCandidates: true
helmRepo:
cname: charts.rancher.io

View File

@ -3,6 +3,13 @@ set -e
cd $(dirname $0)
if [[ -z ${BRANCH} ]]; then
branch=$(git rev-parse --abbrev-ref HEAD)
else
echo "Using branch ${BRANCH}"
branch=${BRANCH}
fi
if [[ -z ${REPOSITORY} ]]; then
echo "Need to provide REPOSITORY as environment variable"
exit 1
@ -16,7 +23,6 @@ mkdir -p ./repository
cd repository
# Pull in branch
branch=$(git rev-parse --abbrev-ref HEAD)
echo "Pulling in ${REPOSITORY}@${branch}"
git clone --depth 1 --branch ${branch} ${REPOSITORY} . > /dev/null 2>&1