diff --git a/Publish NuGet packages.bat b/Publish NuGet packages.bat new file mode 100644 index 0000000..4fc7b46 --- /dev/null +++ b/Publish NuGet packages.bat @@ -0,0 +1,10 @@ +@Echo off + +set source="https://git.pilzinsel64.de/api/v4/projects/8/packages/nuget/index.json" +set apikey=%GitLab_git_pilzinsel64_de% + +for %%x in (%*) do ( + dotnet nuget push "%%x" --source "%source%" --api-key "%apikey%" --skip-duplicate +) + +pause \ No newline at end of file