-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/DmitriyLewen/atcDemo
- Loading branch information
Showing
1 changed file
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,20 @@ | ||
# atcDemo | ||
## Сustomization ATC config file(.atc.yaml) | ||
|
||
Config file use syntax Yaml | ||
|
||
### USAGE: | ||
## Action Inputs | ||
- [**Path**](#action-inputs): Path to your package manager. Path shouldn't have preffix "/". | ||
- [**Behavior**](README.md#action-inputs): What is commits will be used for create tag: `After` or `Before`. | ||
- **Template**: Template your tag. Template should conteins {{.Version}}. | ||
- **Branch**: . | ||
- **RegexStr**: . | ||
|
||
## Example | ||
This example will create a release when a tag is pushed: | ||
|
||
```yaml | ||
path: "contents/pom.xml" | ||
behavior: "after" | ||
template: "v{{.Version}}" | ||
``` |