Skip to content

Commit

Permalink
...don't create
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamc committed Sep 24, 2024
1 parent 0800041 commit 73499d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/github_actions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ 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()
.read(true)
.write(true)
.append(true)
.truncate(false)
.open(&output_path)
.await
Expand Down

0 comments on commit 73499d5

Please sign in to comment.