From e73e6cf5d0fa095c030125e7b9f48b6abc95b258 Mon Sep 17 00:00:00 2001 From: amitpanwar789 Date: Mon, 22 Jul 2024 14:23:21 +0530 Subject: [PATCH] window and linux released configuration added --- .github/workflows/release.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 47b0e260..1ccc6c7a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -194,4 +194,36 @@ jobs: upload_url: ${{ steps.create-release.outputs.upload_url }} asset_path: desktopApp-mac.zip asset_name: robosats-desktop-${{ needs.check-versions.outputs.semver }}-mac.zip + asset_content_type: application/zip + + - name: 'Download linux Build Artifact' + uses: actions/download-artifact@v4 + with: + name: robosats-desktop-${{ needs.check-versions.outputs.semver }}-linux.zip + path: . + - name: 'Upload linux Build Artifact' + id: upload-release-linux-zip-asset + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create-release.outputs.upload_url }} + asset_path: desktopApp-linux.zip + asset_name: robosats-desktop-${{ needs.check-versions.outputs.semver }}-linux.zip + asset_content_type: application/zip + + - name: 'Download window Build Artifact' + uses: actions/download-artifact@v4 + with: + name: robosats-desktop-${{ needs.check-versions.outputs.semver }}-win.zip + path: . + - name: 'Upload macOS Build Artifact' + id: upload-release-win-zip-asset + uses: actions/upload-release-asset@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + upload_url: ${{ steps.create-release.outputs.upload_url }} + asset_path: desktopApp-win.zip + asset_name: robosats-desktop-${{ needs.check-versions.outputs.semver }}-win.zip asset_content_type: application/zip \ No newline at end of file