diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 562e81c..5e61068 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -19,6 +19,4 @@ jobs: dotnet tool install Cake.Tool --version 1.1.0 dotnet tool restore dotnet cake --target=Pack --verbosity=verbose - dotnet nuget push Solana.Unity.Anchor/bin/Release/*.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json - dotnet nuget push Solana.Unity.Anchor.Tool/bin/Release/*.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json - dotnet nuget push Solana.Unity.Anchor.SourceGenerator/bin/Release/*.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json \ No newline at end of file + dotnet nuget push artifacts/*.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json \ No newline at end of file diff --git a/build.cake b/build.cake index ffd2dd2..9fd99eb 100644 --- a/build.cake +++ b/build.cake @@ -23,7 +23,7 @@ var jsonFilePath = Directory(coverageFolder) + File(coberturaFileName + ".json") var packagesDir = artifactsDir.Combine(Directory("packages")); -var deliverables = new[] {"Solana.Unity.Anchor.Tool", "Solana.Unity.Anchor.SourceGenerator"}; +var deliverables = new[] {"Solana.Unity.Anchor", "Solana.Unity.Anchor.Tool", "Solana.Unity.Anchor.SourceGenerator"}; Task("Clean") .Does(() => {