Skip to content

Commit 8514d35

Browse files
committed
fix: command syntax error
1 parent 5936174 commit 8514d35

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

action.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,46 @@
11
name: Git Version
22
author: "Codacy"
3-
description: 'Semver versioning based on the git history and commit messages of your repository.'
3+
description: "Semver versioning based on the git history and commit messages of your repository."
44
branding:
5-
icon: 'git-branch'
6-
color: 'gray-dark'
5+
icon: "git-branch"
6+
color: "gray-dark"
77
inputs:
88
tool-version:
9-
description: 'The version of the tool to be ran'
9+
description: "The version of the tool to be ran"
1010
required: true
1111
default: latest
1212
release-branch:
13-
description: 'The name of the release branch'
13+
description: "The name of the release branch"
1414
required: true
1515
default: master
1616
dev-branch:
17-
description: 'The name of the dev branch'
17+
description: "The name of the dev branch"
1818
required: true
1919
default: dev
2020
minor-identifier:
21-
description: 'The string or regex to identify a minor release commit'
21+
description: "The string or regex to identify a minor release commit"
2222
required: true
23-
default: 'feature:'
23+
default: "feature:"
2424
major-identifier:
25-
description: 'The string or regex to identify a major release commit'
25+
description: "The string or regex to identify a major release commit"
2626
required: true
27-
default: 'breaking:'
27+
default: "breaking:"
2828
prefix:
29-
description: 'The prefix to use in the version'
29+
description: "The prefix to use in the version"
3030
required: false
3131
suffix:
3232
description: "The suffix to use in the version"
3333
required: false
3434
log-paths:
35-
description: 'The paths to be used to calculate changes (comma-separated)'
35+
description: "The paths to be used to calculate changes (comma-separated)"
3636
required: false
3737
default: ./
3838
outputs:
3939
version:
40-
description: 'The value of the new pre-calculated tag'
40+
description: "The value of the new pre-calculated tag"
4141
value: ${{ steps.version.outputs.version }}
4242
previous-version:
43-
description: 'Contains the value of previous tag, before calculating a new one'
43+
description: "Contains the value of previous tag, before calculating a new one"
4444
value: ${{ steps.previous-version.outputs.previous-version }}
4545
runs:
4646
using: "composite"
@@ -66,7 +66,7 @@ runs:
6666
--dev-branch "${{ inputs.dev-branch }}" \
6767
--minor-identifier="${{ inputs.minor-identifier }}" \
6868
--major-identifier="${{ inputs.major-identifier }}" \
69-
--version-prefix "${{ inputs.prefix }}") \
69+
--version-prefix "${{ inputs.prefix }}" \
7070
--version-suffix "${{ inputs.suffix }}")
7171
7272
echo "previous-version=$PREVIOUS_VERSION" >> $GITHUB_OUTPUT
@@ -81,7 +81,7 @@ runs:
8181
--dev-branch "${{ inputs.dev-branch }}" \
8282
--minor-identifier="${{ inputs.minor-identifier }}" \
8383
--major-identifier="${{ inputs.major-identifier }}" \
84-
--version-prefix "${{ inputs.prefix }}") \
84+
--version-prefix "${{ inputs.prefix }}" \
8585
--version-suffix "${{ inputs.suffix }}")
8686
8787
echo "version=$VERSION" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)