Skip to content

Commit

Permalink
Merge pull request #8 from kayone/patch-2
Browse files Browse the repository at this point in the history
Create $tmp dir if it doesn't exist
  • Loading branch information
ebekker authored Jan 4, 2021
2 parents 98c6c9e + 653ad54 commit daddeba
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions action.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ $tmpDir = Join-Path $PWD _TMP
$test_results_path = $inputs.test_results_path
$test_report_path = Join-Path $tmpDir test-results.md

New-Item -Name $tmpDir -ItemType "directory" -Force

function Build-MarkdownReport {
$script:report_name = $inputs.report_name
$script:report_title = $inputs.report_title
Expand Down

0 comments on commit daddeba

Please sign in to comment.