Compare commits

..

5 Commits

Author SHA1 Message Date
1b8c00d7df Add Modules to build script
All checks were successful
build-debian-package / Build the debian package (push) Successful in 4m8s
2026-01-29 14:28:02 +01:00
5dbaa652c5 Update: aspnetcore-runtime-dependency
All checks were successful
build-debian-package / Build the debian package (push) Successful in 2m57s
2026-01-21 09:04:38 +01:00
fb411826ca Upgrade auf net10 und alumnihub 10.0.3
All checks were successful
build-debian-package / Build the debian package (push) Successful in 2m53s
2026-01-21 08:57:42 +01:00
3cce4fd900 Fix: build script 2
All checks were successful
build-debian-package / Build the debian package (push) Successful in 2m58s
2026-01-20 11:17:51 +01:00
a67bfef0ce Fix build script
Some checks failed
build-debian-package / Build the debian package (push) Failing after 1m20s
2026-01-20 11:15:26 +01:00
10 changed files with 36 additions and 9 deletions

View File

@@ -19,13 +19,7 @@ jobs:
- name: "Dotnet SDK einrichten"
uses: actions/setup-dotnet@v4
with:
dotnet-version: "9.0.x"
- name: "Oqtane Framework restore"
run: dotnet restore ./oqtane.framework/Oqtane.sln --verbosity detailed
- name: "Oqtane Framework bauen"
run: dotnet build -c Release ./oqtane.framework/Oqtane.sln
- name: "Oqtane Framework publish"
run: dotnet publish -c Release ./oqtane.framework/Oqtane.sln -o ./alumnihub_10.0_amd64/opt/alumnihub
dotnet-version: "10.0.x"
- name: "Build .deb"
run: ./run-build.sh "${{ gitea.ref_name }}" "./alumnihub_10.0_amd64"
- name: "Upload .deb"

15
.gitmodules vendored
View File

@@ -4,3 +4,18 @@
[submodule "oqtane.framework"]
path = oqtane.framework
url = https://git.kocoder.xyz/Diplomarbeit-Absolventenverein/oqtane.framework.git
[submodule "Module.AdminModules"]
path = Module.AdminModules
url = https://git.kocoder.xyz/Diplomarbeit-Absolventenverein/Module.AdminModules.git
[submodule "Theme.SZUAbsolventenverein"]
path = Theme.SZUAbsolventenverein
url = https://git.kocoder.xyz/Diplomarbeit-Absolventenverein/Theme.SZUAbsolventenverein.git
[submodule "Module.EventRegistration"]
path = Module.EventRegistration
url = https://git.kocoder.xyz/Diplomarbeit-Absolventenverein/Module.EventRegistration.git
[submodule "Module.HallOfFame"]
path = Module.HallOfFame
url = https://git.kocoder.xyz/Diplomarbeit-Absolventenverein/Module.HallOfFame.git
[submodule "Module.PremiumArea"]
path = Module.PremiumArea
url = https://git.kocoder.xyz/Diplomarbeit-Absolventenverein/Module.PremiumArea.git

1
Module.AdminModules Submodule

Submodule Module.AdminModules added at 002b3cafff

1
Module.HallOfFame Submodule

Submodule Module.HallOfFame added at 2d8c6736a7

1
Module.PremiumArea Submodule

Submodule Module.PremiumArea added at 0942f0b308

View File

@@ -2,6 +2,6 @@ Package: alumnihub
Architecture: amd64
Essential: no
Priority: optional
Depends: aspnetcore-runtime-9.0,nginx,postgresql-18
Depends: aspnetcore-runtime-10.0,nginx,postgresql-18
Maintainer: kocoder
Description: Our production oqtane setup

View File

@@ -2,6 +2,19 @@
VERSION="$1"
DEBIAN_PACKAGE_PATH="$2"
dotnet restore ./oqtane.framework/Oqtane.slnx
dotnet build -c Release ./oqtane.framework/Oqtane.slnx
dotnet publish -c Release ./oqtane.framework/Oqtane.Server/Oqtane.Server.csproj
for module in $(ls . | grep -E 'Module|Theme')
do
dotnet restore ./$module/*.slnx
dotnet build -c Release ./$module/*.slnx
dotnet publish -c Release ./$module/*.slnx
done
echo $VERSION $DEBIAN_PACKAGE_PATH
echo "Version: ${VERSION}" >> $DEBIAN_PACKAGE_PATH/DEBIAN/control