Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/workflow/copilot_srt.go
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ func generateFirewallLogParsingStep(workflowName string) GitHubActionStep {
" # Fix permissions on firewall logs so they can be uploaded as artifacts",
" # AWF runs with sudo, creating files owned by root",
fmt.Sprintf(" sudo chmod -R a+r %s 2>/dev/null || true", firewallLogsDir),
" awf logs summary | tee -a \"$GITHUB_STEP_SUMMARY\"",
" awf logs summary | tee -a \"$GITHUB_STEP_SUMMARY\" || true",
}

return GitHubActionStep(stepLines)
Expand Down