Skip to content

Commit 4481f19

Browse files
authored
Update build.yml
actually create qlplugin zip file
1 parent eaf5909 commit 4481f19

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,10 @@ jobs:
9999
working-directory: ${{env.GITHUB_WORKSPACE}}
100100
# Add additional options to the MSBuild command line here (like platform or verbosity level).
101101
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
102-
run: msbuild /m /p:BuildInParallel=true /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}}
102+
run: |
103+
msbuild /m /p:BuildInParallel=true /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}}
104+
cd scripts
105+
powershell ./pack-zip.ps1
103106
104107
# upload msi and zip artifacts so the publish job below can download and then update latest release via Linux
105108
- uses: actions/upload-artifact@v3

0 commit comments

Comments
 (0)