Skip to content

Commit

Permalink
exp: Add ubuntu 22.04 experimental builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Palm1r authored Jan 21, 2025
1 parent 2814dec commit a6c909d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/build_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@ jobs:
platform: linux_x64,
cc: "gcc", cxx: "g++"
}
- {
name: "Ubuntu 22.04 GCC", artifact: "Linux-x64(Ubuntu-22.04-experimental)",
os: ubuntu-22.04,
platform: linux_x64,
cc: "gcc", cxx: "g++"
}
- {
name: "macOS Latest Clang", artifact: "macOS-universal",
os: macos-latest,
Expand Down
2 changes: 1 addition & 1 deletion settings/PluginUpdater.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ void PluginUpdater::handleUpdateResponse(QNetworkReply *reply)
#elif defined(Q_OS_MACOS)
if (name.contains("macOS"))
#else
if (name.contains("Linux"))
if (name.contains("Linux") && !name.contains("experimental"))
#endif
{
info.downloadUrl = asset.toObject()["browser_download_url"].toString();
Expand Down

0 comments on commit a6c909d

Please sign in to comment.