We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12f3fc5 commit d8c5e2bCopy full SHA for d8c5e2b
.github/workflows/msbuild.yml
@@ -38,15 +38,8 @@ jobs:
38
working-directory: ${{env.GITHUB_WORKSPACE}}
39
run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}}
40
41
- - name: zip release build
42
- shell: pwsh
43
- run: |
44
- $zipPath = "build/ffTools-${{env.BUILD_CONFIGURATION}}.zip"
45
- Compress-Archive -Path "build/bin/${{env.BUILD_CONFIGURATION}}/*" -DestinationPath $zipPath -Force
46
- if (!(Test-Path $zipPath)) { Write-Error "zip creation failed" }
47
-
48
- - name: upload release zip
+ - name: upload release build
49
uses: actions/upload-artifact@v4
50
with:
51
name: ffTools-release
52
- path: build/ffTools-${{env.BUILD_CONFIGURATION}}.zip
+ path: build/bin/${{env.BUILD_CONFIGURATION}}/
0 commit comments