fix(build): include NebulaAuth.exe in release package

Fix CI packaging configuration to ensure NebulaAuth.exe is included
in the published release artifacts.
This commit is contained in:
achiez
2026-03-14 15:36:02 +02:00
parent e681ca07f1
commit c879dd462c
4 changed files with 57 additions and 4 deletions
+4 -2
View File
@@ -113,8 +113,10 @@ jobs:
run: | run: |
dotnet publish src/NebulaAuth/NebulaAuth.csproj \ dotnet publish src/NebulaAuth/NebulaAuth.csproj \
-c Release \ -c Release \
-o build \ -r win-x64 \
-p:EnableWindowsTargeting=true --self-contained false \
-p:EnableWindowsTargeting=true \
-o build
# -------------------------------------------------------- # --------------------------------------------------------
# Package ZIP # Package ZIP
+1
View File
@@ -22,6 +22,7 @@
<File Path="changelog/1.8.1.html" /> <File Path="changelog/1.8.1.html" />
<File Path="changelog/1.8.2.html" /> <File Path="changelog/1.8.2.html" />
<File Path="changelog/1.8.3.json" /> <File Path="changelog/1.8.3.json" />
<File Path="changelog/1.8.4.json" />
</Folder> </Folder>
<Project Path="src/NebulaAuth/NebulaAuth.csproj" /> <Project Path="src/NebulaAuth/NebulaAuth.csproj" />
<Project Path="src/SteamLibForked/SteamLibForked.csproj" /> <Project Path="src/SteamLibForked/SteamLibForked.csproj" />
+50
View File
@@ -0,0 +1,50 @@
{
"version": "1.8.4",
"date": "2026-03-14",
"changes": [
{
"type": "FIX",
"text": "Rebuilt release package to include the missing NebulaAuth.exe file. Version 1.8.4 is functionally identical to 1.8.3 and only fixes the packaging issue that caused the executable to be absent in the previous release."
},
{
"type": "NEW",
"text": "Introduced a redesigned update system with a custom update dialog and integrated changelog viewer",
"link": "https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies/pull/19"
},
{
"type": "NEW",
"text": "Added support for importing SDA-encrypted mafiles with automatic manifest detection",
"link": "https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies/pull/17"
},
{
"type": "NEW",
"text": "Grouped market confirmations can now be expanded to reveal individual items",
"link": "https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies/pull/18"
},
{
"type": "SECURITY",
"text": "Added SHA256 checksum verification for downloaded update packages"
},
{
"type": "IMPROVEMENT",
"text": "Export feature now trims input automatically to prevent issues caused by invisible characters or extra spaces"
},
{
"type": "IMPROVEMENT",
"text": "Improved update experience with 'Remind later' and 'Skip version' options"
},
{
"type": "IMPROVEMENT",
"text": "Added visual update indicator and manual 'Check for updates' action"
},
{
"type": "IMPROVEMENT",
"text": "Expanded localization support with Spanish, Turkish and Kazakh languages"
},
{
"type": "INFO",
"text": "Read the full release notes for NebulaAuth 1.8.3",
"link": "https://teletype.in/@achies_raw/o-RDwZKZkAU"
}
]
}
+1 -1
View File
@@ -10,7 +10,7 @@
<SatelliteResourceLanguages>en;ru;ua</SatelliteResourceLanguages> <SatelliteResourceLanguages>en;ru;ua</SatelliteResourceLanguages>
<ApplicationIcon>Theme\lock.ico</ApplicationIcon> <ApplicationIcon>Theme\lock.ico</ApplicationIcon>
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion> <SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
<AssemblyVersion>1.8.3</AssemblyVersion> <AssemblyVersion>1.8.4</AssemblyVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup> </PropertyGroup>