10 lines
250 B
Batchfile
10 lines
250 B
Batchfile
@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 |