Skip to content

Commit

Permalink
fix: Incorrect path of Runner logs (philips-labs#2233)
Browse files Browse the repository at this point in the history
Runner log paths where not updated after moving the default runner location to /opt/action-runner.
  • Loading branch information
npalm committed Jul 14, 2022
1 parent 58aa5ed commit 98eff98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/runners/logging.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ locals {
{
"log_group_name" : "runner",
"prefix_log_group" : true,
"file_path" : var.runner_os == "windows" ? "C:/actions-runner/_diag/Runner_*.log" : "/home/runners/actions-runner/_diag/Runner_**.log",
"file_path" : var.runner_os == "windows" ? "C:/actions-runner/_diag/Runner_*.log" : "/opt/actions-runner/_diag/Runner_**.log",
"log_stream_name" : "{instance_id}"
},
{
Expand Down

0 comments on commit 98eff98

Please sign in to comment.