We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fa7651 commit 4c01f83Copy full SHA for 4c01f83
src/main.ts
@@ -25,10 +25,10 @@ async function run(): Promise<void> {
25
)
26
27
const status = response.status
28
+ core.info(`status code ${status}`)
29
if (status === 200) {
30
core.info('Deployed the code successfully')
- }
31
- if (status === 401) {
+ } else if (status === 401) {
32
core.info(
33
'Authentication error, please check your databricks token!'
34
0 commit comments