Skip to content

Commit

Permalink
Fix configFilePath default
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-codeflow authored and arturcic committed Nov 23, 2020
1 parent a33003e commit b925f8e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions docs/examples/github/gitversion/execute/usage-examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ useConfigFile:
required: false
default: false
configFilePath:
description: Optional path to config file (defaults to yml).
description: Optional path to config file (defaults to GitVersion.yml).
required: false
default: ''
default: 'GitVersion.yml'
updateAssemblyInfo:
description: Whether to update versions in the AssemblyInfo files.
required: false
Expand Down Expand Up @@ -116,6 +116,7 @@ steps:
uses: gittools/actions/gitversion/execute@v0.9.6
with:
useConfigFile: true
configFilePath: 'GitVersion.yml'
```

Example contents of **GitVersion.yml**:
Expand Down
2 changes: 1 addition & 1 deletion gitversion/execute/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ inputs:
configFilePath:
description: Optional path to config file (defaults to GitVersion.yml)
required: false
default: ''
default: 'GitVersion.yml'
updateAssemblyInfo:
description: Whether to update versions in the AssemblyInfo files
required: false
Expand Down

0 comments on commit b925f8e

Please sign in to comment.