diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index 9989329..bdce8fc 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -84,11 +84,15 @@ jobs: rm p/main/main.dll cmd /c 7z a -tzip HIC.Rdmp.Extensions.Plugin.${{ steps.version.outputs.version }}.rdmp plugin.nuspec p dotnet run --project RDMP/Tools/rdmp/rdmp.csproj -c Release -- pack -p --file HIC.Rdmp.Extensions.Plugin.${{ steps.version.outputs.version }}.rdmp --dir yaml + cmd /c 7z a -tzip HIC.Rdmp.Extensions.Plugin.${{ steps.version.outputs.version }}.nupkg plugin.nuspec p + dotnet run --project RDMP/Tools/rdmp/rdmp.csproj -c Release -- pack -p --file HIC.Rdmp.Extensions.Plugin.${{ steps.version.outputs.version }}.nupkg --dir yaml dotnet run --project RDMP/Tools/rdmp/rdmp.csproj -c Release -- cmd listsupportedcommands --dir yaml - name: Store created rdmp files uses: actions/upload-artifact@v4 with: - path: ./*.rdmp + path: | + ./*.rdmp + ./*.nupkg retention-days: 1 - name: Upload release binaries if: contains(github.ref,'refs/tags/') @@ -96,4 +100,5 @@ jobs: with: repo_token: ${{ secrets.GITHUB_TOKEN }} tag: ${{ github.ref }} - file: 'HIC.Rdmp.Extensions.Plugin.${{ steps.version.outputs.version }}.rdmp' + file_glob: true + file: 'HIC.Rdmp.Extensions.Plugin.${{ steps.version.outputs.version }}.*' diff --git a/RDMP b/RDMP index 55fa1df..7285120 160000 --- a/RDMP +++ b/RDMP @@ -1 +1 @@ -Subproject commit 55fa1df55760b615f99aec2cd30cdcd7f4890916 +Subproject commit 72851208fc5be9e1979f15d5649efa0f1b6838fe diff --git a/SharedAssemblyInfo.cs b/SharedAssemblyInfo.cs index 6d85a33..3cde316 100644 --- a/SharedAssemblyInfo.cs +++ b/SharedAssemblyInfo.cs @@ -9,6 +9,6 @@ [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] -[assembly: AssemblyVersion("6.2.2")] -[assembly: AssemblyFileVersion("6.2.2")] -[assembly: AssemblyInformationalVersion("6.2.2")] +[assembly: AssemblyVersion("6.2.3")] +[assembly: AssemblyFileVersion("6.2.3")] +[assembly: AssemblyInformationalVersion("6.2.3")]