mirror of https://git.rancher.io/charts
Point to dev-v2.6 and run make docs
parent
aae93d0125
commit
d0a006101b
|
@ -1,2 +1,3 @@
|
|||
bin
|
||||
*.DS_Store
|
||||
*.DS_Store
|
||||
.idea
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
|
@ -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
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue