Skip to content

Commit

Permalink
chore: Fix build step
Browse files Browse the repository at this point in the history
  • Loading branch information
jdcargile committed Feb 21, 2024
1 parent 91ed148 commit 27840a2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ async function run(): Promise<void> {

axios
.post(msTeamsWebhookUri, messageCard)
.then(function(response) {
.then(function (response) {
console.log(response)
core.debug(response.data)
})
.catch(function(error) {
.catch(function (error) {
core.debug(error)
})
} catch (error) {
} catch (error: any) {
console.log(error)
core.setFailed(error.message)
}
Expand Down

0 comments on commit 27840a2

Please sign in to comment.