Skip to content

Commit b89039e

Browse files
authored
Update main.yml #GITBUILD one more
1 parent 5cf2f9a commit b89039e

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/main.yml

+13
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,19 @@ jobs:
8383
)
8484
echo Found UnityLauncherPro.exe
8585
86+
# download vs installer builder
87+
- name: Download Installer‐Projects VSIX
88+
shell: pwsh
89+
run: |
90+
$vsixUrl = "https://marketplace.visualstudio.com/_apis/public/gallery/publishers/VisualStudioClient/extensions/VisualStudioInstallerProjects/versions/1.0.0/media"
91+
Invoke-WebRequest $vsixUrl -OutFile installerprojects.vsix
92+
93+
# install vs installer builder
94+
- name: Install Installer‐Projects extension
95+
shell: pwsh
96+
run: |
97+
& "${{ steps.vswhere.outputs.installPath }}\Common7\IDE\VSIXInstaller.exe" \
98+
installerprojects.vsix /quiet
8699
87100
# Build MSI installer project using Visual Studio 2022 workaround
88101
- name: Build Installer MSI

0 commit comments

Comments
 (0)