From 494c6e661aa757e0b807a3f4e8e363c109abc5d3 Mon Sep 17 00:00:00 2001 From: Gabriele Picco Date: Mon, 26 Feb 2024 13:33:06 +0100 Subject: [PATCH] :pencil2: Fix CI/CD --- .github/workflows/publish.yml | 4 +--- build.cake | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) 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(() => {