diff --git a/.github/workflows/nina-release.yaml b/.github/workflows/nina-release.yaml index bcf5087..597672c 100644 --- a/.github/workflows/nina-release.yaml +++ b/.github/workflows/nina-release.yaml @@ -34,14 +34,14 @@ jobs: # This will build your solution. If the solution name differs from your plugin name, please adjust it here - name: Build .NET Assemblies run: | - dotnet restore + dotnet restore AstroAppHTTPAPI dotnet build AstroAppHTTPAPI/${{ env.PLUGIN_NAME }}.sln -c Release -p:PostBuildEvent= -p:Version=${{ github.ref_name }} # Add all necessary files that the plugin needs to the packages folder - basically all items that are normally in your post build event on your local builds - name: Prepare package run: | - Copy-Item "AstroAppHTTPAPI/bin/Release/net8.0-windows8.0/${{ env.PLUGIN_DLL_NAME }}.dll" "packages/${{ env.PLUGIN_NAME }}/${{ env.PLUGIN_DLL_NAME }}.dll" -Force - Copy-Item "AstroAppHTTPAPI/bin/Release/net8.0-windows8.0/${{ env.PLUGIN_DLL_NAME }}.pdb" "packages/${{ env.PLUGIN_NAME }}/${{ env.PLUGIN_DLL_NAME }}.pdb" -Force + Copy-Item "AstroAppHTTPAPI/bin/Release/net8.0-windows/${{ env.PLUGIN_DLL_NAME }}.dll" "packages/${{ env.PLUGIN_NAME }}/${{ env.PLUGIN_DLL_NAME }}.dll" -Force + Copy-Item "AstroAppHTTPAPI/bin/Release/net8.0-windows/${{ env.PLUGIN_DLL_NAME }}.pdb" "packages/${{ env.PLUGIN_NAME }}/${{ env.PLUGIN_DLL_NAME }}.pdb" -Force - name: Create Plugin archives and manifests run: | diff --git a/AstroAppHTTPAPI/Properties/AssemblyInfo.cs b/AstroAppHTTPAPI/Properties/AssemblyInfo.cs index c166ec8..74f07c8 100644 --- a/AstroAppHTTPAPI/Properties/AssemblyInfo.cs +++ b/AstroAppHTTPAPI/Properties/AssemblyInfo.cs @@ -7,8 +7,8 @@ // [MANDATORY] The assembly versioning //Should be incremented for each new release build of a plugin -[assembly: AssemblyVersion("1.0.0.3")] -[assembly: AssemblyFileVersion("1.0.0.3")] +[assembly: AssemblyVersion("1.0.0.4")] +[assembly: AssemblyFileVersion("1.0.0.4")] // [MANDATORY] The name of your plugin [assembly: AssemblyTitle("Astro HTTP API")]