-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from PaulHatch/feature/short-flag
Add support for disabling short tags
- Loading branch information
Showing
5 changed files
with
34 additions
and
5 deletions.
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
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
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
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
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 |
---|---|---|
|
@@ -66,6 +66,8 @@ it will be given the new version if the build were to be retriggered, for exampl | |
```yaml | ||
- uses: paulhatch/[email protected] | ||
with: | ||
# The prefix to use to identify tags | ||
branch: "master" | ||
# The prefix to use to identify tags | ||
tag_prefix: "v" | ||
# A string which, if present in a git commit, indicates that a change represents a | ||
|
@@ -80,6 +82,9 @@ it will be given the new version if the build were to be retriggered, for exampl | |
change_path: "src/my-service" | ||
# Named version, will be used as suffix for name version tag | ||
namespace: project-b | ||
# Indicate whether short tags like 'v1' should be supported. If false only full | ||
# tags like 'v1.0.0' will be recognized. | ||
short_tags: true | ||
``` | ||
## Using Multiple Versions in the Same Repository | ||
|