Skip to content

Commit

Permalink
fix pdf generation
Browse files Browse the repository at this point in the history
  • Loading branch information
osterman committed Feb 19, 2024
1 parent 8386675 commit ad7baa3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ const path = require('path');
const fs = require('fs').promises; // Import the fs module
const fsSync = require('fs');
const yaml = require('js-yaml');
const util = require('util');
const exec = util.promisify(require('child_process').exec);

const GITHUB_WORKSPACE = process.env.GITHUB_WORKSPACE || '.';
const INPUT_OUTPUT = process.env.INPUT_OUTPUT || 'docs/example.png';
Expand Down

0 comments on commit ad7baa3

Please sign in to comment.