We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c37bf2 commit 503c899Copy full SHA for 503c899
src/bin/md-table-action.rs
@@ -36,7 +36,7 @@ fn main() -> GitHubActionResult {
36
let out_file_path = runner_temp_dir.join("markdown-table-".to_owned() + in_file_stem + ".md");
37
38
// Write markdown table to output file
39
- std::fs::write(&out_file_path, md_table)?;
+ std::fs::write(&out_file_path, md_table+"\n")?;
40
41
// Export output file path as a GitHub Actions output for other steps to consume
42
let outputfile = out_file_path.to_str().unwrap();
0 commit comments