Skip to content

Commit 92111b9

Browse files
author
Guven Karanfil
committed
log login response to output
1 parent 0404df8 commit 92111b9

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

dist/index.js

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,10 @@ export async function run(): Promise<void> {
2626
const appPath = core.getInput('appPath')
2727
const message = core.getInput('message')
2828

29-
await runCLICommand(`appcircle login --pat=${accessToken}`)
29+
const loginResponse = await runCLICommand(
30+
`appcircle login --pat=${accessToken}`
31+
)
32+
console.log(loginResponse)
3033
const response = await runCLICommand(
3134
`appcircle testing-distribution upload --app=${appPath} --distProfileId=${profileID} --message "${message}" -o json`
3235
)

0 commit comments

Comments
 (0)