Skip to content

Commit

Permalink
Don't truncate
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamc committed Sep 24, 2024
1 parent 8a2eb34 commit 0800041
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/github_actions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ pub(crate) enum Error {
pub(crate) async fn set_output<'a>(name: &'a str, value: &'a str) -> Result<(), Error> {
let output_path = std::env::var_os("GITHUB_OUTPUT").ok_or(Error::GithubOutputUnset)?;
let mut fh = tokio::fs::OpenOptions::new()
.create(true)
.read(true)
.write(true)
.truncate(false)
Expand Down

0 comments on commit 0800041

Please sign in to comment.