From 50a8dc6d094bf39ea780759d052f9f18b856b57e Mon Sep 17 00:00:00 2001 From: Pascal Date: Sat, 20 Dec 2025 09:53:10 +0000 Subject: [PATCH] =?UTF-8?q?Pilz.Dalamud/deploy-nugets.sh=20gel=C3=B6scht?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Pilz.Dalamud/deploy-nugets.sh | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 Pilz.Dalamud/deploy-nugets.sh diff --git a/Pilz.Dalamud/deploy-nugets.sh b/Pilz.Dalamud/deploy-nugets.sh deleted file mode 100644 index d78c15d..0000000 --- a/Pilz.Dalamud/deploy-nugets.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash -set -e - -sourceP="https://git.pilzinsel64.de/api/packages/Pilz.NET/nuget/index.json" -apikeyP="$Gitea_git_pilzinsel64_de" - -sourceN="https://api.nuget.org/v3/index.json" -apikeyN="$NuGet_ApiKey" - -for pkg in "$@"; do - dotnet nuget push "$pkg" --source "$sourceP" --api-key "$apikeyP" --skip-duplicate - dotnet nuget push "$pkg" --source "$sourceN" --api-key "$apikeyN" --skip-duplicate -done