File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 4040 if : startsWith(github.ref, 'refs/tags/v')
4141 run : |
4242 $version = "${{ github.ref_name }}".TrimStart('v')
43+ Write-Host "=== Updating version to $version ==="
4344 & .github/scripts/update-manifest-version.ps1 -Version $version -ManifestPath "PingTool.WinUI3\Package.appxmanifest"
45+ Write-Host "=== Cleaning previous builds ==="
46+ dotnet clean ${{ env.SOLUTION_PATH }} -c Release
4447
4548 - name : Build MSIX Bundle
4649 run : |
8588 if : startsWith(github.ref, 'refs/tags/v')
8689 run : |
8790 $version = "${{ github.ref_name }}".TrimStart('v')
91+ Write-Host "=== Updating version to $version ==="
8892 & .github/scripts/update-manifest-version.ps1 -Version $version -ManifestPath "PingTool.WinUI3\Package.appxmanifest"
93+ Write-Host "=== Cleaning previous builds ==="
94+ dotnet clean ${{ env.SOLUTION_PATH }} -c Release
8995
9096 - name : Build x64 Release
9197 run : |
You can’t perform that action at this time.
0 commit comments