Skip to content

Commit

Permalink
Merge pull request #14 from rharkor/dev
Browse files Browse the repository at this point in the history
fix: ci
  • Loading branch information
rharkor authored Jun 13, 2024
2 parents c8de405 + 2db2de0 commit 59ad364
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions post.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
const core = require('@actions/core')
const { readFile } = require('fs/promises')

const serverPort = 41230
Expand All @@ -17,7 +16,7 @@ async function run() {

//* Read the logs
const logs = await readFile(serverLogFile, 'utf-8')
core.info(logs)
console.log(logs)
} catch (error) {
// Fail the workflow run if an error occurs
if (error instanceof Error) core.setFailed(error.message)
Expand Down

0 comments on commit 59ad364

Please sign in to comment.