add deploy for linux

This commit is contained in:
2025-11-10 18:14:43 +01:00
parent c19c858de1
commit 5fd8bcba28
2 changed files with 13 additions and 0 deletions

14
deploy-nugets.bat Normal file
View File

@@ -0,0 +1,14 @@
@echo off
set sourceP="https://git.pilzinsel64.de/api/v4/projects/6/packages/nuget/index.json"
set apikeyP=%GitLab_git_pilzinsel64_de%
set sourceN="https://api.nuget.org/v3/index.json"
set apikeyN=%NuGet_ApiKey%
for %%x in (%*) do (
dotnet nuget push "%%x" --source "%sourceP%" --api-key "%apikeyP%" --skip-duplicate
dotnet nuget push "%%x" --source "%sourceN%" --api-key "%apikeyN%" --skip-duplicate
)
pause