Bump version to 1.7.7-alpha-10 and update release workflow

Updated the version to 1.7.7-alpha-10 in both the code and VERSION file. Fixed artifact naming and release name in the GitHub Actions workflow. Also, modified Helper.cs to return DateTime.UtcNow in ActualDateTime().
This commit is contained in:
Dawid Bepierszcz 2025-10-03 02:16:49 +02:00
parent b41ac992c0
commit da9830ee05
4 changed files with 5 additions and 4 deletions

View file

@ -22,7 +22,7 @@ public partial class CS2_SimpleAdmin : BasePlugin, IPluginConfig<CS2_SimpleAdmin
public override string ModuleName => "CS2-SimpleAdmin" + (Helper.IsDebugBuild ? " (DEBUG)" : " (RELEASE)");
public override string ModuleDescription => "Simple admin plugin for Counter-Strike 2 :)";
public override string ModuleAuthor => "daffyy & Dliix66";
public override string ModuleVersion => "1.7.7-alpha-9";
public override string ModuleVersion => "1.7.7-alpha-10";
public override void Load(bool hotReload)
{

View file

@ -937,6 +937,7 @@ public static class Time
{
public static DateTime ActualDateTime()
{
return DateTime.UtcNow;
string timezoneId = CS2_SimpleAdmin.Instance.Config.Timezone;
DateTime utcNow = DateTime.UtcNow;

View file

@ -1 +1 @@
1.7.7-alpha-9
1.7.7-alpha-10