Update push_master.yml

This commit is contained in:
2024-03-11 02:32:00 +01:00
committed by GitHub
Unverified
parent f5978fa5ce
commit c46d9277fe

View File

@@ -44,15 +44,17 @@ jobs:
with:
path: VDownload/Package.appxmanifest
oldString: "Version=\"0.0.0.0\""
newString: "Version=\"${{steps.gitversion.outputs.major}}.${{steps.gitversion.outputs.minor}}.${{steps.gitversion.outputs.patch}}.0\""
newString: "Version=\"${{steps.gitversion.outputs.SemVer}}.0\""
showFileContent: true
escapeBackslash: true
- name: Set version in app.manifest file
uses: Nambers/ReplaceStringInFile@v1.3
with:
path: VDownload/app.manifest
oldString: "assemblyIdentity version=\"0.0.0.0\""
newString: "assemblyIdentity version=\"${{steps.gitversion.outputs.major}}.${{steps.gitversion.outputs.minor}}.${{steps.gitversion.outputs.patch}}.0\""
newString: "assemblyIdentity version=\"${{steps.gitversion.outputs.SemVer}}.0\""
showFileContent: true
escapeBackslash: true
- name: Setup .NET
uses: actions/setup-dotnet@v3
with: