Skip to content

Commit

Permalink
Correct dir placement
Browse files Browse the repository at this point in the history
  • Loading branch information
yairm210 committed Jul 28, 2024
1 parent 9dddb14 commit 267b76e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/buildAndDeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -231,10 +231,10 @@ jobs:
uses: microsoft/setup-msbuild@v2

- name: Unzip unciv file
run: |
mkdir wix-msi-files
tar -xf Unciv-Windows64.zip -C wix-msi-files
dir wix-msi-files
run: | # The relative folders in wxs files are relative to the file itself
mkdir .github/workflows/wix-msi-files
tar -xf Unciv-Windows64.zip -C .github/workflows/wix-msi-files
dir .github/workflows/wix-msi-files
- name: Install WiX
run: dotnet tool install --global wix
Expand Down

0 comments on commit 267b76e

Please sign in to comment.