Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
Signed-off-by: Joaquim Rocha <joaquim.rocha@microsoft.com>
  • Loading branch information
joaquimrocha committed Nov 16, 2023
1 parent 758c3dc commit 6475599
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/app-artifacts-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,13 @@ jobs:
uses: crazy-max/ghaction-chocolatey@v1
with:
args: install make
- name: Install WixToolset
if: ${{ inputs.msi }}
run : |
curl -OLS https://github.com/wixtoolset/wix3/releases/download/wix3111rtm/wix311.exe
.\wix311.exe /install /quiet /norestart
$wixPath = ";C:\Program Files (x86)\WiX Toolset v3.11\bin;"
$env:PATH = $env:PATH + $wixPath
- name: Fetch certificates
if: ${{ inputs.signBinaries }}
shell: pwsh
Expand Down Expand Up @@ -95,7 +102,6 @@ jobs:
} else {
echo "Not signing binaries"
}
winget install WixToolset.AdditionalTools
make app-win-msi
- name: Upload artifact
Expand Down

0 comments on commit 6475599

Please sign in to comment.