diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index bd0e6b3..688c2a8 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -313,6 +313,9 @@ jobs: cp artifacts/crossdesk-linux-arm64-${{ steps.version.outputs.VERSION_NUM }}/* release/crossdesk-linux-arm64-${{ steps.version.outputs.VERSION_NUM }}.deb cp artifacts/crossdesk-win-x86_64-${{ steps.version.outputs.VERSION_NUM }}/* release/crossdesk-win-x86_64-${{ steps.version.outputs.VERSION_NUM }}.exe + - name: List release files + run: ls -lh release/ + - name: Upload to Versioned GitHub Release uses: softprops/action-gh-release@v2 with: diff --git a/scripts/linux/pkg_arm64.sh b/scripts/linux/pkg_arm64.sh index dc2197b..74d2728 100644 --- a/scripts/linux/pkg_arm64.sh +++ b/scripts/linux/pkg_arm64.sh @@ -113,9 +113,6 @@ dpkg-deb --build "$DEB_DIR" OUTPUT_FILE="crossdesk-linux-arm64-$APP_VERSION.deb" mv "$DEB_DIR.deb" "$OUTPUT_FILE" -INSTALL_PATH="/tmp/$OUTPUT_FILE" -mv "$OUTPUT_FILE" "$INSTALL_PATH" - rm -rf "$DEB_DIR" -echo "✅ Deb package for $OUTPUT_FILE created successfully." \ No newline at end of file +echo "Deb package for $OUTPUT_FILE created successfully." \ No newline at end of file diff --git a/scripts/linux/pkg_x86_64.sh b/scripts/linux/pkg_x86_64.sh index af9a834..e1df118 100644 --- a/scripts/linux/pkg_x86_64.sh +++ b/scripts/linux/pkg_x86_64.sh @@ -113,9 +113,6 @@ dpkg-deb --build "$DEB_DIR" OUTPUT_FILE="crossdesk-linux-x86_64-$APP_VERSION.deb" mv "$DEB_DIR.deb" "$OUTPUT_FILE" -INSTALL_PATH="/tmp/$OUTPUT_FILE" -mv "$OUTPUT_FILE" "$INSTALL_PATH" - rm -rf "$DEB_DIR" -echo "✅ Deb package for $OUTPUT_FILE created successfully." \ No newline at end of file +echo "Deb package for $OUTPUT_FILE created successfully." \ No newline at end of file