From 220f2679763d30ea60738a86d122eccc83e06f37 Mon Sep 17 00:00:00 2001 From: rustdesk Date: Thu, 2 May 2024 15:28:04 +0800 Subject: [PATCH] no need to publish deb in unsigned any more since we removed appimage/flatpak/headless feature --- .github/workflows/flutter-build.yml | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/.github/workflows/flutter-build.yml b/.github/workflows/flutter-build.yml index e57dc5a85..e31c1c422 100644 --- a/.github/workflows/flutter-build.yml +++ b/.github/workflows/flutter-build.yml @@ -705,7 +705,6 @@ jobs: needs: - build-for-macOS - build-for-windows-flutter - - build-rustdesk-linux runs-on: ubuntu-latest if: ${{ inputs.upload-artifact }} steps: @@ -727,21 +726,9 @@ jobs: name: rustdesk-unsigned-windows-x86_64 path: ./windows-x86_64/ - - name: Download Artifacts - uses: actions/download-artifact@master - with: - name: rustdesk-${{ env.VERSION }}-aarch64.deb - path: ./ - - - name: Download Artifacts - uses: actions/download-artifact@master - with: - name: rustdesk-${{ env.VERSION }}-x86_64.deb - path: ./ - - name: Combine unsigned app run: | - tar czf rustdesk-${{ env.VERSION }}-unsigned.tar.gz *.dmg windows-x86_64 *.deb + tar czf rustdesk-${{ env.VERSION }}-unsigned.tar.gz *.dmg windows-x86_64 - name: Publish unsigned app uses: softprops/action-gh-release@v1