mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 16:59:53 +09:00
🚑 Fix use of illegal character in Sentry's release name scheme
This commit is contained in:
@ -49,7 +49,7 @@ namespace osu.Game.Utils
|
||||
options.AutoSessionTracking = true;
|
||||
options.IsEnvironmentUser = false;
|
||||
// The reported release needs to match version as reported to Sentry in .github/workflows/sentry-release.yml
|
||||
options.Release = $"osu/{game.Version.Replace($@"-{OsuGameBase.BUILD_SUFFIX}", string.Empty)}";
|
||||
options.Release = $"osu@{game.Version.Replace($@"-{OsuGameBase.BUILD_SUFFIX}", string.Empty)}";
|
||||
});
|
||||
|
||||
Logger.NewEntry += processLogEntry;
|
||||
|
Reference in New Issue
Block a user