From 52510a3eb7905cfa72206f3778f01c3a3257dffa Mon Sep 17 00:00:00 2001 From: ModStart Date: Sat, 23 Nov 2024 11:08:02 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=EF=BC=9Affmpeg=E8=BD=AC?= =?UTF-8?q?=E6=8D=A2=E8=B7=AF=E5=BE=84=E5=8C=85=E5=90=AB=E7=A9=BA=E6=A0=BC?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/main-build.yml | 29 +++++++++++++++++++++-------- 1 file changed, 21 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main-build.yml b/.github/workflows/main-build.yml index 78e27b6e..e2f87899 100644 --- a/.github/workflows/main-build.yml +++ b/.github/workflows/main-build.yml @@ -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