Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
sshh12 committed Sep 7, 2024
1 parent 7f649b2 commit 1f642cf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nina-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
4 changes: 2 additions & 2 deletions AstroAppHTTPAPI/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
Expand Down

0 comments on commit 1f642cf

Please sign in to comment.