We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5cd53f commit fc489b6Copy full SHA for fc489b6
1 file changed
.github/workflows/build.yml
@@ -186,11 +186,13 @@ jobs:
186
iscc.exe setup.iss
187
mv "Output\gopeed.exe" "Output\Gopeed-$TAG-windows-${{ matrix.arch }}.exe"
188
Compress-Archive -Path "Output\Gopeed-$TAG-windows-${{ matrix.arch }}.exe" -DestinationPath "Output\Gopeed-$TAG-windows-${{ matrix.arch }}.zip"
189
+ # 输出Output目录下的文件列表
190
+ Get-ChildItem -Path "Output\*"
191
- name: Upload
192
uses: shogo82148/actions-upload-release-asset@v1
193
with:
194
upload_url: ${{ needs.get-release.outputs.upload_url }}
- asset_path: ui/flutter/build/windows/Output/*
195
+ asset_path: build\windows\Output\*
196
overwrite: true
197
build-macos-amd64-lib:
198
if: ${{ github.event.inputs.platform == 'all' || github.event.inputs.platform == 'macos' }}
0 commit comments