update release logic to check out master before commit

This commit is contained in:
EliotJones
2025-11-13 21:07:41 -04:00
parent 005e52783e
commit 3174289a14

View File

@@ -44,5 +44,10 @@ jobs:
.\tools\set-version.ps1 $newVer -UpdateAssemblyAndFileVersion
git config user.name "github-actions"
git config user.email "github-actions@github.com"
git fetch origin master
git checkout master
git pull
git commit -am "Increment version to $newVer"
git push