Compare commits

...

22 Commits

Author SHA1 Message Date
14cc769418 Fix: rights and embed packages into the APT-Package
All checks were successful
build-debian-package / Build the debian package (push) Successful in 4m25s
2026-01-29 23:03:41 +01:00
76feb7615d Create Oqtane.Server/Packages folder in pipeline
All checks were successful
build-debian-package / Build the debian package (push) Successful in 4m52s
2026-01-29 22:37:26 +01:00
c3d521e5a0 Use: dotnet pack instead of nuget pack...
Some checks failed
build-debian-package / Build the debian package (push) Has been cancelled
2026-01-29 22:31:02 +01:00
b7b950d4ac Install nuget
Some checks failed
build-debian-package / Build the debian package (push) Failing after 30s
2026-01-29 21:44:53 +01:00
4fd49d0ea0 Add: nuget into pipeline
All checks were successful
build-debian-package / Build the debian package (push) Successful in 4m35s
2026-01-29 21:38:43 +01:00
458514e04b New: Add fixProps to bundle all modules correctly
All checks were successful
build-debian-package / Build the debian package (push) Successful in 4m3s
2026-01-29 21:32:18 +01:00
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
0af02afb20 Rollback further (6.2.1 -> 6.1.3)
All checks were successful
build-debian-package / Build the debian package (push) Successful in 2m43s
2026-01-20 10:58:36 +01:00
17da27123e Fix build script for net 9.0
All checks were successful
build-debian-package / Build the debian package (push) Successful in 3m41s
2026-01-17 23:49:59 +01:00
f429512a14 Rollback to Oqtane Version 6.1.3 and dotnet 9.0
Some checks failed
build-debian-package / Build the debian package (push) Failing after 57s
2026-01-17 23:47:29 +01:00
933d194e5c Best-Practise: do not delete user
All checks were successful
build-debian-package / Build the debian package (push) Successful in 3m15s
2026-01-15 14:54:33 +01:00
162fd61936 Use adduser --system to prevent the script from failing
All checks were successful
build-debian-package / Build the debian package (push) Successful in 3m4s
2026-01-15 14:48:54 +01:00
4405df38aa Fix: Typo
All checks were successful
build-debian-package / Build the debian package (push) Successful in 3m13s
2026-01-15 10:40:39 +01:00
6f0d30cde1 Use git cli to checkout submodules
Some checks failed
build-debian-package / Build the debian package (push) Failing after 11s
2026-01-15 10:38:46 +01:00
8643daa984 Use oqtane.framework and customer as submodule in the pipeline
Some checks failed
build-debian-package / Build the debian package (push) Failing after 38s
2026-01-15 10:37:00 +01:00
c373b194d6 Add Customer git repository as a submodule to deploy scripts as well 2026-01-15 10:32:49 +01:00
9f707e8504 Use only numbered tags...
All checks were successful
build-debian-package / Build the debian package (push) Successful in 3m8s
2026-01-15 09:42:32 +01:00
e0663ebfab Remove Version line from control since it'S populated via the script.
Some checks failed
build-debian-package / Build the debian package (push) Failing after 2m26s
2026-01-15 09:29:45 +01:00
17 changed files with 65 additions and 17 deletions

View File

@@ -2,7 +2,7 @@ name: build-debian-package
on:
push:
tags:
- v*
- '*'
jobs:
@@ -14,18 +14,12 @@ jobs:
run: git clone ${{ gitea.server_url }}/${{ gitea.repository }}.git .
- name: "Git checkout"
run: git checkout "${{ gitea.sha }}"
- name: "Submodules auschecken"
run: git submodule update --init
- name: "Dotnet SDK einrichten"
uses: actions/setup-dotnet@v4
with:
dotnet-version: "10.0.x"
- name: "Oqtane Framework auschecken"
run: git clone ${{ gitea.server_url }}/Diplomarbeit-Absolventenverein/oqtane.framework.git
- name: "Oqtane Framework restore"
run: dotnet restore ./oqtane.framework/Oqtane.slnx --verbosity detailed
- name: "Oqtane Framework bauen"
run: dotnet build -c Release ./oqtane.framework/Oqtane.slnx
- name: "Oqtane Framework publish"
run: dotnet publish -c Release ./oqtane.framework/Oqtane.slnx -o ./alumnihub_10.0_amd64/opt/alumnihub
- name: "Build .deb"
run: ./run-build.sh "${{ gitea.ref_name }}" "./alumnihub_10.0_amd64"
- name: "Upload .deb"

24
.gitmodules vendored Normal file
View File

@@ -0,0 +1,24 @@
[submodule "alumnihub_10.0_amd64/opt/alumnihub-helpers"]
path = alumnihub_10.0_amd64/opt/alumnihub-helpers
url = https://git.kocoder.xyz/Diplomarbeit-Absolventenverein/Customer.git
[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
[submodule "fixProps"]
path = fixProps
url = https://github.com/oqtane/oqtane.FixProps

1
Module.AdminModules Submodule

Submodule Module.AdminModules added at a94527f294

1
Module.HallOfFame Submodule

Submodule Module.HallOfFame added at 7d11271d7c

1
Module.PremiumArea Submodule

Submodule Module.PremiumArea added at 4a1d334a5c

View File

@@ -1,5 +1,4 @@
Package: alumnihub
Version: 10.0-2
Architecture: amd64
Essential: no
Priority: optional

View File

@@ -1 +1,4 @@
#!/bin/bash
#!/bin/bash
adduser --system alumnihub
chown -R alumnihub:root /opt/alumnihub

View File

@@ -1,2 +1 @@
#!/bin/bash
deluser oqtane
#!/bin/bash

View File

@@ -1,2 +1 @@
#!/bin/bash
useradd oqtane
#!/bin/bash

View File

@@ -2,14 +2,14 @@
Description=Alumnihub Webservice
[Service]
WorkingDirectory=/opt/oqtane
WorkingDirectory=/opt/alumnihub
ExecStart=/usr/bin/dotnet /opt/alumnihub/Oqtane.Server.dll
Restart=always
# Restart service after 10 seconds if the dotnet service crashes:
RestartSec=5
KillSignal=SIGINT
SyslogIdentifier=alumnihub
User=oqtane
User=alumnihub
Environment=ASPNETCORE_ENVIRONMENT=Production
Environment=ASPNETCORE_URLS="http://127.0.0.1:5000"
Environment=ASPNETCORE_FORWARDEDHEADERS_ENABLED=true

1
fixProps Submodule

Submodule fixProps added at 10f645be52

1
oqtane.framework Submodule

Submodule oqtane.framework added at 6db5c924c7

View File

@@ -2,6 +2,28 @@
VERSION="$1"
DEBIAN_PACKAGE_PATH="$2"
echo "Building oqtane.framework"
dotnet restore ./oqtane.framework/Oqtane.slnx
dotnet build ./oqtane.framework/Oqtane.slnx
dotnet build -c Release ./oqtane.framework/Oqtane.slnx
dotnet publish -c Release ./oqtane.framework/Oqtane.Server/Oqtane.Server.csproj -o ./alumnihub_10.0_amd64/opt/alumnihub
mkdir -p ./oqtane.framework/Oqtane.Server/Packages
echo ""
echo "Building Modules and Themes"
for module in $(ls . | grep -E 'Module|Theme')
do
echo "######## Building $module"
dotnet restore ./$module/*.slnx
dotnet build -c Release ./$module/*.slnx
dotnet publish -c Release ./$module/*.slnx
done
cp ./oqtane.framework/Oqtane.Server/Packages ./alumnihub_10.0_amd64/opt/alumnihub/Packages
echo $VERSION $DEBIAN_PACKAGE_PATH
echo "Version: ${VERSION}" >> $DEBIAN_PACKAGE_PATH/DEBIAN/control