Skip to content

Commit a611089

Browse files
authored
fix: ordering of arguments
1 parent ee2fd20 commit a611089

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ runs:
7171
--dev-branch "${{ inputs.dev-branch }}" \
7272
--minor-identifier="${{ inputs.minor-identifier }}" \
7373
--major-identifier="${{ inputs.major-identifier }}" \
74-
${{ inputs.skip-prerelease == 'true' && '--skip-prerelease' || '' }} \
75-
--version-prefix "${{ inputs.prefix }}")
74+
--version-prefix "${{ inputs.prefix }}" \
75+
${{ inputs.skip-prerelease == 'true' && '--skip-prerelease' || '' }})
7676
7777
echo "previous-version=$PREVIOUS_VERSION" >> $GITHUB_OUTPUT
7878
echo "Previous Version: $PREVIOUS_VERSION"
@@ -87,8 +87,8 @@ runs:
8787
--minor-identifier="${{ inputs.minor-identifier }}" \
8888
--major-identifier="${{ inputs.major-identifier }}" \
8989
--log-paths="${{ inputs.log-paths }}" \
90-
${{ inputs.skip-prerelease == 'true' && '--skip-prerelease' || '' }} \
91-
--version-prefix "${{ inputs.prefix }}")
90+
--version-prefix "${{ inputs.prefix }}" \
91+
${{ inputs.skip-prerelease == 'true' && '--skip-prerelease' || '' }})
9292
9393
echo "version=$VERSION" >> $GITHUB_OUTPUT
9494
echo "New Version: $VERSION"

0 commit comments

Comments
 (0)