Skip to content

Commit

Permalink
Add CLI to sync 👼
Browse files Browse the repository at this point in the history
The initial `_index.md` file of CLI got added to the CLI repository,
so adding the cli repository to the sync script for the future.

Signed-off-by: Vincent Demeester <vdemeest@redhat.com>
  • Loading branch information
vdemeester authored and tekton-robot committed Apr 8, 2020
1 parent c136529 commit 486310e
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions sync/config/cli.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Each YAML file under sync/ configures how helper/helper.py synchronizes
# contents of various versions from its source of truth (usually a GitHub
# repository of a Tekton component, such as tektoncd/pipelines) to
# content/ (for the lastest version) and vault/ (for earlier versions).

# The name of the component.
# helper.py will use this value to build directories in content/ and vault/.
component: CLI
# The order of the component.
displayOrder: 2
# The GitHub repository where documentation resides.
repository: https://github.com/tektoncd/cli
# The directory in the GitHub repository where contents reside.
docDirectory: docs
# The tags (versions) of contents to sync.
# Note that helper.py and related script reads tags in the order specified in
# the following list; the first entry in tags will automatically become the
# latest version of contents.
tags:
# The name of the tag in the GitHub repository.
- name: master
# The name to display on tekton.dev.
# helper.py will use this value in the version switcher and other places.
displayName: master
# Key-value pairs of files to sync, where the key is the original filename
# and the value is the new filename.
files:
- README.md: _index.md
# To add a new version, append to the list as below
#- name: v0.8.2
# displayName: v0.8.x
# files:
# - myfiles.md: myfiles.md
# The link to the GitHub tag page.
archive: https://github.com/tektoncd/cli/tags

0 comments on commit 486310e

Please sign in to comment.