Skip to content

Commit

Permalink
fix: enable true color
Browse files Browse the repository at this point in the history
Fixes: #158
  • Loading branch information
aymanbagabas committed May 28, 2024
1 parent 145e03c commit 8207640
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ async function run(): Promise<void> {
// sequences.
core.exportVariable('CI', '')

// GitHub Actions support terminal true colors, so we can enable it.
core.exportVariable('COLORTERM', 'truecolor')

if (filePath) {
core.info('Running VHS')
await exec.exec(`${bin} ${filePath}`)
Expand Down

0 comments on commit 8207640

Please sign in to comment.