File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -119,8 +119,8 @@ The following is an extended example with all available options.
119
119
# Optional. Create given branch name in local and remote repository.
120
120
create_branch : true
121
121
122
- # Perform a clean git tag and push, without commiting anything
123
- # Default to false
122
+ # Optional. Creates a new tag and pushes it to remote without creating a commit.
123
+ # Skips dirty check and changed files. Must be used with `tagging_message`.
124
124
create_git_tag_only : false
125
125
` ` `
126
126
@@ -173,6 +173,7 @@ You can use these outputs to trigger other Actions in your Workflow run based on
173
173
174
174
- `changes_detected` : Returns either "true" or "false" if the repository was dirty and files have changed.
175
175
- `commit_hash` : Returns the full hash of the commit if one was created.
176
+ - `create_git_tag_only` : Returns either "true" or "false" if a tag was created, when `create_git_tag_only` was used.
176
177
177
178
**⚠️ When using outputs, the step needs to be given an id. See example below.**
178
179
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ outputs:
84
84
commit_hash :
85
85
description : Full hash of the created commit. Only present if the "changes_detected" output is "true".
86
86
create_git_tag_only :
87
- description :
87
+ description : Value is "true", if a git tag was created using the `create_git_tag_only`-input.
88
88
89
89
runs :
90
90
using : ' node20'
You can’t perform that action at this time.
0 commit comments