Skip to content

Commit

Permalink
Update push_master.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuszskoczek authored Mar 11, 2024
1 parent f5978fa commit c46d927
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/push_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit c46d927

Please sign in to comment.