9 Commits

Author SHA1 Message Date
0738a230a3 CI: dynamic versions
All checks were successful
release-nuget-package / Release NuGet Package (push) Successful in 27s
2026-02-14 00:03:24 +01:00
c1370b1f71 CI: Possible naming collition
Some checks failed
release-nuget-package / Release NuGet Package (push) Failing after 26s
2026-02-13 23:55:05 +01:00
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
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
3 changed files with 16 additions and 9 deletions

View File

@@ -17,12 +17,12 @@ jobs:
uses: actions/setup-dotnet@v4 uses: actions/setup-dotnet@v4
with: with:
dotnet-version: "10.0.x" dotnet-version: "10.0.x"
- name: "Get configured dotnet sources" - name: "Configure nuget source"
run: dotnet nuget list sources 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" - name: "Build Interfaces Project"
run: dotnet build -c PublishNuget ./Interfaces/Interfaces.csproj run: dotnet build -c PublishNuget ./Interfaces/Interfaces.csproj
- name: "Release to Package Registry" - 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" - name: "Create release"
uses: akkuman/gitea-release-action@v1 uses: akkuman/gitea-release-action@v1
with: with:

View File

@@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> <package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata> <metadata>
<id>$projectname$</id> <id>$projectname$</id>
<version>1.0.0</version> <version>$version$</version>
<authors>SZUAbsolventenverein</authors> <authors>SZUAbsolventenverein</authors>
<owners>SZUAbsolventenverein</owners> <owners>SZUAbsolventenverein</owners>
<title>Interfaces</title> <title>Interfaces</title>
@@ -17,7 +17,7 @@
</packageTypes> </packageTypes>
</metadata> </metadata>
<files> <files>
<file src="./bin\$configuration$\$targetframework$\$ProjectName$.dll" target="lib\$targetframework$" /> <file src="./bin\$Config$\$targetframework$\$ProjectName$.dll" target="lib\$targetframework$" />
<file src="./bin\$configuration$\$targetframework$\$ProjectName$.pdb" target="lib\$targetframework$" /> <file src="./bin\$Config$\$targetframework$\$ProjectName$.pdb" target="lib\$targetframework$" />
</files> </files>
</package> </package>

View File

@@ -3,10 +3,17 @@ TargetFramework=$1
ProjectName=$2 ProjectName=$2
Configuration=$3 Configuration=$3
find . -name *.nupkg -delete echo "ENV Following:"
dotnet pack $ProjectName.nuspec "/p:targetframework=${TargetFramework};ProjectName=${ProjectName};configuration=${Configuration}" env
if [ $Configuration -eq 'PublishNuget' ]; then 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};Config=${Configuration};version=${GITHUB_REF_NAME}"
if [ $Configuration == 'PublishNuget' ]; then
echo "Skipping copy to Oqtane.Server/Packages" echo "Skipping copy to Oqtane.Server/Packages"
else else
echo "Copy to Oqtane.Server/Packages" echo "Copy to Oqtane.Server/Packages"