Skip to content

Commit

Permalink
修复:ffmpeg转换路径包含空格问题
Browse files Browse the repository at this point in the history
  • Loading branch information
modstart committed Nov 23, 2024
1 parent 648bb70 commit 52510a3
Showing 1 changed file with 21 additions and 8 deletions.
29 changes: 21 additions & 8 deletions .github/workflows/main-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,25 @@ jobs:
dist-release/*.AppImage:linkandroid/linkandroid-${{ env.DIST_FILE_NAME }}/
dist-release/*.deb:linkandroid/linkandroid-${{ env.DIST_FILE_NAME }}/
# - name: Upload Artifact
# uses: actions/upload-artifact@v4
# with:
# path: |
# dist-release/*.exe
# dist-release/*.dmg
# dist-release/*.AppImage
# dist-release/*.deb
- name: Upload Artifact Windows
uses: actions/upload-artifact@v4
with:
name: windows-artifact
path: |
dist-release/*.exe
- name: Upload Artifact Macos
uses: actions/upload-artifact@v4
with:
name: macos-artifact
path: |
dist-release/*.dmg
- name: Upload Artifact Linux
uses: actions/upload-artifact@v4
with:
name: linux-artifact
path: |
dist-release/*.AppImage
dist-release/*.deb

0 comments on commit 52510a3

Please sign in to comment.