Skip to content

Commit 48e9542

Browse files
committed
fix: Specify log if no token available or empty
1 parent e9cfaf5 commit 48e9542

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,9 @@ async function main(args) {
8686

8787
// == Step 3: sanitize and set token
8888
const token = await tokenHelpers.getToken(inputs, projectRoot)
89+
if (token === '') {
90+
log('-> No token specified or token is empty')
91+
}
8992

9093
// == Step 4: get network
9194
let uploadFile = ''

0 commit comments

Comments
 (0)