5959
6060 - name : Gather MSIX files
6161 id : gather
62- if : matrix.configuration == 'Release' && startsWith(github.ref, 'refs/tags/')
62+ if : matrix.configuration == 'Release' # && startsWith(github.ref, 'refs/tags/')
6363 run : |
6464 $gatherDirectory = Join-Path $env:App_Project_Directory "obj" "Bundle"
6565 New-Item -ItemType Directory -Path $gatherDirectory | Out-Null
9393 Write-Output "upload_file=$uploadFile" >> $env:GITHUB_OUTPUT
9494
9595 - name : Create MSIX bundle
96- if : matrix.configuration == 'Release' && startsWith(github.ref, 'refs/tags/')
96+ if : matrix.configuration == 'Release' # && startsWith(github.ref, 'refs/tags/')
9797 uses : LanceMcCarthy/Action-MsixBundler@v2.0.0
9898 with :
9999 msix-folder : ${{ steps.gather.outputs.gather_directory }}
@@ -102,15 +102,15 @@ jobs:
102102 sdk-version : ' 10.0.26100.0' # Default 10.0.19041.0 does not work anymore in September 2025
103103
104104 - name : Create MSIX upload
105- if : matrix.configuration == 'Release' && startsWith(github.ref, 'refs/tags/')
105+ if : matrix.configuration == 'Release' # && startsWith(github.ref, 'refs/tags/')
106106 run : |
107107 $uploadFile = "${{ steps.gather.outputs.upload_file }}"
108108 $bundleDirectory = "${{ steps.gather.outputs.bundle_directory }}"
109109
110110 Compress-Archive -Path "$bundleDirectory\*" -DestinationPath $uploadFile
111111
112112 - name : Upload build artifacts
113- if : matrix.configuration == 'Release' && startsWith(github.ref, 'refs/tags/')
113+ if : matrix.configuration == 'Release' # && startsWith(github.ref, 'refs/tags/')
114114 uses : actions/upload-artifact@v4
115115 with :
116116 name : MSIX Package
0 commit comments