4 Commits

Author SHA1 Message Date
613b1e1843 CI: Fix: Use correct name
Some checks failed
release-nuget-package / Release NuGet Package (push) Failing after 25s
2026-02-13 23:48:44 +01:00
df9bf69405 CI: Debugging
Some checks failed
release-nuget-package / Release NuGet Package (push) Failing after 31s
2026-02-13 23:44:04 +01:00
38aedff5c2 CI: Go back to valid bash
Some checks failed
release-nuget-package / Release NuGet Package (push) Failing after 35s
2026-02-13 20:33:15 +01:00
a798ee544e CI: Variablen testen
Some checks failed
release-nuget-package / Release NuGet Package (push) Failing after 25s
2026-02-13 20:30:47 +01:00
2 changed files with 6 additions and 2 deletions

View File

@@ -22,7 +22,7 @@ jobs:
- name: "Build Interfaces Project"
run: dotnet build -c PublishNuget ./Interfaces/Interfaces.csproj
- name: "Release to Package Registry"
run: dotnet nuget push --source gitea --api-key ${{ secrets.REGISTRY_TOKEN_KOCODER }} ./Interfaces/Interfaces.*.nupkg
run: dotnet nuget push --source DAV --api-key ${{ secrets.REGISTRY_TOKEN_KOCODER }} ./Interfaces/Interfaces.*.nupkg
- name: "Create release"
uses: akkuman/gitea-release-action@v1
with:

View File

@@ -3,8 +3,12 @@ TargetFramework=$1
ProjectName=$2
Configuration=$3
echo "ENV: ${TargetFramework} ${ProjectName} ${Configuration}"
echo "ENV Following:"
env
echo "ENV: ${TargetFramework} ${ProjectName} ${Configuration} RN: ${GITHUB_REF_NAME}"
cat $ProjectName.nuspec
find . -name *.nupkg -delete
dotnet pack $ProjectName.nuspec "/p:targetframework=${TargetFramework};ProjectName=${ProjectName};configuration=${Configuration}"