Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docs/content/docs/concepts/files/pipeline-syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ Consider the following Pipeline which implements a basic two-stage continuous de
```yaml
version: v1.0
name: build

parameters:
param_name:
type: string
default: default_value

stages:
- Compile
- Package
Expand All @@ -28,6 +34,7 @@ jobs:
directory: cds
url: '{{.git.url}}'
- script:
- echo {{.cds.pip.param_name}}
- cd cds/ui
- npm set registry https://registry.npmjs.org
- npm install
Expand Down