Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
hakanlundvall committed Jan 2, 2024
1 parent 93c50ce commit 8c1cbac
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions http-push.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
const http = require('@actions/http-client');
let httpc = new http.HttpClient('github-actions');
(async () => {
let res = await httpc.post('https://www.lundvall.info/templog/firmware', JSON.stringify({run_id: process.env.GITHUB_RUN_ID}));
if (res.message.statusCode != 200) {
throw new Error(`Failed to push: ${res.message.statusMessage}`);
}
let headers = { 'Content-Type': 'application/json' };
let payload = JSON.stringify({ run_id: process.env.GITHUB_RUN_ID });
console.log(`Pushing ${payload}`);
let res = await httpc.post('https://www.lundvall.info/templog/firmware', payload, headers);
if (res.message.statusCode != 200) {
throw new Error(`Failed to push: ${res.message.statusMessage}`);
}
})();

0 comments on commit 8c1cbac

Please sign in to comment.