diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9e2493733..6fc24ea3c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -749,6 +749,7 @@ jobs: ...releaseMetadata, draft: true, tag_name: tagName, + tag_commitish: context.sha, name: `GCM ${version}` }); releaseMetadata.release_id = createdRelease.data.id; diff --git a/VERSION b/VERSION index ae208425f..5b3c26b59 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.3.1.0 +2.3.2.0 diff --git a/src/shared/Core/Trace2FileWriter.cs b/src/shared/Core/Trace2FileWriter.cs index dbf1b5d6d..16781c005 100644 --- a/src/shared/Core/Trace2FileWriter.cs +++ b/src/shared/Core/Trace2FileWriter.cs @@ -31,5 +31,10 @@ public override void Write(Trace2Message message) // Windows and the file is currently open for writing // by another process (likely Git itself.) } + catch (IOException) + { + // Do nothing, as this likely means that the file is currently + // open by another process (on Windows). + } } }