Skip to content

Commit

Permalink
Prepend newline for set-output (#772)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericsciple committed Apr 13, 2021
1 parent 8afb976 commit e76deca
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
3 changes: 3 additions & 0 deletions packages/core/RELEASES.md
@@ -1,5 +1,8 @@
# @actions/core Releases

### 1.2.7
- [Prepend newline for set-output](https://github.com/actions/toolkit/pull/772)

### 1.2.6
- [Update `exportVariable` and `addPath` to use environment files](https://github.com/actions/toolkit/pull/571)

Expand Down
9 changes: 6 additions & 3 deletions packages/core/__tests__/core.test.ts
Expand Up @@ -159,17 +159,20 @@ describe('@actions/core', () => {

it('setOutput produces the correct command', () => {
core.setOutput('some output', 'some value')
assertWriteCalls([`::set-output name=some output::some value${os.EOL}`])
assertWriteCalls([
os.EOL,
`::set-output name=some output::some value${os.EOL}`
])
})

it('setOutput handles bools', () => {
core.setOutput('some output', false)
assertWriteCalls([`::set-output name=some output::false${os.EOL}`])
assertWriteCalls([os.EOL, `::set-output name=some output::false${os.EOL}`])
})

it('setOutput handles numbers', () => {
core.setOutput('some output', 1.01)
assertWriteCalls([`::set-output name=some output::1.01${os.EOL}`])
assertWriteCalls([os.EOL, `::set-output name=some output::1.01${os.EOL}`])
})

it('setFailed sets the correct exit code and failure message', () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@actions/core",
"version": "1.2.6",
"version": "1.2.7",
"description": "Actions core lib",
"keywords": [
"github",
Expand Down
1 change: 1 addition & 0 deletions packages/core/src/core.ts
Expand Up @@ -99,6 +99,7 @@ export function getInput(name: string, options?: InputOptions): string {
*/
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export function setOutput(name: string, value: any): void {
process.stdout.write(os.EOL)
issueCommand('set-output', {name}, value)
}

Expand Down

0 comments on commit e76deca

Please sign in to comment.