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.
2 parents 8064e2e + 0e54a3e commit f0a172aCopy full SHA for f0a172a
.github/workflows/release.yml
@@ -749,6 +749,7 @@ jobs:
749
...releaseMetadata,
750
draft: true,
751
tag_name: tagName,
752
+ tag_commitish: context.sha,
753
name: `GCM ${version}`
754
});
755
releaseMetadata.release_id = createdRelease.data.id;
VERSION
@@ -1 +1 @@
1
-2.3.1.0
+2.3.2.0
src/shared/Core/Trace2FileWriter.cs
@@ -31,5 +31,10 @@ public override void Write(Trace2Message message)
31
// Windows and the file is currently open for writing
32
// by another process (likely Git itself.)
33
}
34
+ catch (IOException)
35
+ {
36
+ // Do nothing, as this likely means that the file is currently
37
+ // open by another process (on Windows).
38
+ }
39
40
0 commit comments