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 1f24b27 commit 3ae4346Copy full SHA for 3ae4346
src/run.ts
@@ -13,6 +13,7 @@ export const run = async (): Promise<void> => {
13
const workSpace = process.env.GITHUB_WORKSPACE as string
14
const filePath = path.join(workSpace, inp.FilePath)
15
const fileContent = fs.readFileSync(filePath).toString()
16
+ core.info(`[INFO] Done with file "${filePath}"`)
17
core.endGroup()
18
19
core.startGroup('Deploy to gist')
@@ -27,6 +28,7 @@ export const run = async (): Promise<void> => {
27
28
}
29
30
})
31
+ core.info(`[INFO] Done with gist "${inp.GistID}/${fileName}"`)
32
33
34
core.info('[INFO] Action successfully completed')
0 commit comments