Skip to content

Commit e812500

Browse files
author
Elias Jørgensen
committed
Convert buffer to string
1 parent 5e05c86 commit e812500

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const theSpell = 'git ls-remote --heads origin | grep $(git rev-parse HEAD) | se
88
'| sed \'s/$/.\'"$(git rev-list --no-merges --count $GITHUB_REF).$(git describe --always $GITHUB_REF)"\'/\''
99

1010
try {
11-
const result = execSync(theSpell).trim()
11+
const result = execSync(theSpell).toString().trim()
1212
core.info(result)
1313
core.setOutput('version', result)
1414
} catch (error) {

0 commit comments

Comments
 (0)