Skip to content

Commit

Permalink
Fix Create MSI (aws#539)
Browse files Browse the repository at this point in the history
  • Loading branch information
sethAmazon authored Aug 4, 2022
1 parent 7d7c547 commit a4a6e0c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/integrationTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -224,9 +224,7 @@ jobs:
if: steps.cached_win_zip.outputs.cache-hit != 'true'
run: |
sudo apt install zip
mkdir buildMSI
cp -r msi_dep buildMSI
zip -r buildMSI.zip buildMSI
zip buildMSI.zip msi_dep/*
- name: Upload zip
if: steps.cached_win_zip.outputs.cache-hit != 'true'
Expand Down Expand Up @@ -316,7 +314,7 @@ jobs:
$wixToolsetBinPath = ";C:\Program Files (x86)\WiX Toolset v3.11\bin;"
$env:PATH = $env:PATH + $wixToolsetBinPath
Expand-Archive buildMSI.zip -Force
cd buildMSI
cd buildMSI/msi_dep
.\create_msi.ps1 ${{ github.sha }} ${{ secrets.S3_INTEGRATION_BUCKET }}
#GH actions set up gpg only works on ubuntu as of this commit date
Expand Down

0 comments on commit a4a6e0c

Please sign in to comment.