3 Commits

Author SHA1 Message Date
aece91aff0 CI: Print Vars and add source
Some checks failed
release-nuget-package / Release NuGet Package (push) Failing after 27s
2026-02-13 20:13:48 +01:00
b1786eb578 CI: fix dotnet nuget list source
Some checks failed
release-nuget-package / Release NuGet Package (push) Failing after 28s
2026-02-13 20:00:44 +01:00
79d7058e66 Fix: release.sh - okay, dass war peinlich
Some checks failed
release-nuget-package / Release NuGet Package (push) Failing after 29s
2026-02-13 19:54:54 +01:00
2 changed files with 6 additions and 3 deletions

View File

@@ -17,8 +17,8 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: "10.0.x"
- name: "Get configured dotnet sources"
run: dotnet nuget list sources
- name: "Configure nuget source"
run: dotnet nuget add source --name DAV --username kocoder --password ${{ secrets.REGISTRY_TOKEN_KOCODER }} https://git.kocoder.xyz/api/packages/Diplomarbeit-Absolventenverein/nuget/index.json --store-password-in-clear-text
- name: "Build Interfaces Project"
run: dotnet build -c PublishNuget ./Interfaces/Interfaces.csproj
- name: "Release to Package Registry"

View File

@@ -3,10 +3,13 @@ TargetFramework=$1
ProjectName=$2
Configuration=$3
echo "ENV: ${TargetFramework} ${ProjectName} ${Configuration}"
find . -name *.nupkg -delete
dotnet pack $ProjectName.nuspec "/p:targetframework=${TargetFramework};ProjectName=${ProjectName};configuration=${Configuration}"
if [ $Configuration -eq 'PublishNuget' ]; then
if [ $Configuration == 'PublishNuget' ]; then
echo "Skipping copy to Oqtane.Server/Packages"
else
echo "Copy to Oqtane.Server/Packages"