From 43eb0e5ed944908561f8ca72fd383782c853933a Mon Sep 17 00:00:00 2001 From: Marco Gomiero Date: Thu, 26 Dec 2024 19:30:00 +0100 Subject: [PATCH] Fix desktop CI --- .github/workflows/desktop-gh-release.yml | 53 ++++++++++++++---------- 1 file changed, 32 insertions(+), 21 deletions(-) diff --git a/.github/workflows/desktop-gh-release.yml b/.github/workflows/desktop-gh-release.yml index e28285a63..4cffbd222 100644 --- a/.github/workflows/desktop-gh-release.yml +++ b/.github/workflows/desktop-gh-release.yml @@ -244,39 +244,50 @@ jobs: runs-on: ubuntu-latest permissions: contents: write + steps: - - name: Download DEB artifact + - name: Download artifacts uses: actions/download-artifact@v4 with: - name: ${{ needs.build-linux.outputs.deb_name }} merge-multiple: true - - name: Download RPM artifact - uses: actions/download-artifact@v4 - with: - name: ${{ needs.build-linux.outputs.rpm_name }} - merge-multiple: true - - name: Download Windows artifact - uses: actions/download-artifact@v4 - with: - name: ${{ needs.build-windows.outputs.artifact_name }} - merge-multiple: true +# - name: Download DEB artifact +# uses: actions/download-artifact@v4 +# with: +# name: ${{ needs.build-linux.outputs.deb_name }} +# +# - name: Download RPM artifact +# uses: actions/download-artifact@v4 +# with: +# name: ${{ needs.build-linux.outputs.rpm_name }} +# +# - name: Download Windows artifact +# uses: actions/download-artifact@v4 +# with: +# name: ${{ needs.build-windows.outputs.artifact_name }} +# +# - name: Download macOS artifact +# uses: actions/download-artifact@v4 +# with: +# name: ${{ needs.build-macos.outputs.artifact_name }} - - name: Download macOS artifact - uses: actions/download-artifact@v4 - with: - name: ${{ needs.build-macos.outputs.artifact_name }} - merge-multiple: true + - name: List artifacts + run: ls -R +# .: +# FeedFlow-1.0.82.dmg +# FeedFlow-1.0.82.msi +# feedflow-1.0.82-1.x86_64.rpm +# feedflow_1.0.82_amd64.deb - name: Create Release uses: softprops/action-gh-release@v1 with: files: | - ${{ needs.build-linux.outputs.deb_name }} - ${{ needs.build-linux.outputs.rpm_name }} - ${{ needs.build-windows.outputs.artifact_name }} - ${{ needs.build-macos.outputs.artifact_name }} + *.dmg + *.msi + *.rpm + *.deb draft: true tag_name: ${{ needs.build-macos.outputs.release_tag }} env: