Skip to content

Commit

Permalink
🚧 Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
iou90 committed Sep 15, 2021
1 parent 3f38d9b commit f229a54
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,16 @@ interface CdnError {

const run: () => Promise<void> = async () => {
try {
core.info('heyheyhey')
const accessKeyId = core.getInput('accessKeyId')
const appSecret = core.getInput('appSecret')
const version = core.getInput('version')
const action = core.getInput('action')
core.info('hey')
const parametersInputs = core.getInput('parameters')
core.debug(typeof parametersInputs)
core.debug(parametersInputs)
core.debug(JSON.parse(parametersInputs))
core.info(typeof parametersInputs)
core.info(parametersInputs)
core.info(JSON.parse(parametersInputs))
let parameters: Parameters = {}
if (parametersInputs) {
parameters = JSON.parse(parametersInputs)
Expand Down

0 comments on commit f229a54

Please sign in to comment.