Skip to content

Commit

Permalink
Add temporary Wix downgrade step
Browse files Browse the repository at this point in the history
* 3.14.1 has a bug that breaks installers using Netfx deps
  • Loading branch information
jasonleenaylor committed May 20, 2024
1 parent ddd9026 commit 282a53e
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ jobs:
uses: actions/checkout@v4
with:
ref: ${{ inputs.flex_ref }}

- name: Downgrade Wix Toolset
shell: cmd
run: choco install wixtoolset --version 3.11.2 --allow-downgrade --force

- name: Checkout Installer
uses: actions/checkout@v4
Expand All @@ -60,21 +64,21 @@ jobs:
uses: actions/checkout@v4
with:
repository: sillsdev/FwHelps
ref: ${{ inputs.helps_ref }}
ref: ${{ inputs.helps_ref || 'develop' }}
path: DistFiles/Helps

- name: Checkout Localizations
uses: actions/checkout@v4
with:
repository: sillsdev/FwLocalizations
ref: ${{ inputs.l10n_ref }}
ref: ${{ inputs.l10n_ref || 'master' }}
path: Localizations

- name: Checkout liblcm (for l10n)
uses: actions/checkout@v4
with:
repository: sillsdev/liblcm
ref: ${{ inputs.lcm_ref }}
ref: ${{ inputs.lcm_ref || 'master' }}
path: Localizations/LCM


Expand Down

0 comments on commit 282a53e

Please sign in to comment.