Skip to content

Commit

Permalink
Commit and push AppInfo.ini when auto-updated
Browse files Browse the repository at this point in the history
  • Loading branch information
mesheets committed Feb 17, 2024
1 parent 81f2432 commit db9ce80
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Update-PDFsamVersion.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,11 @@ else
echo "Publish the new portable app release"
[string]$releaseName = "{0} {1}" -f $appInfoContent["Details"]["Name"], $appInfoContent["Version"]["DisplayVersion"]
gh release create "$latestSourceVersionTag" "$pafAppInstaller" --title $releaseName --notes $releaseName

# Commit and push the updated AppInfo.ini file
echo "Commit and push the updated AppInfo.ini file"
git commit "$appInfoFile"
git push
}
catch
{
Expand Down

0 comments on commit db9ce80

Please sign in to comment.