Compare commits
12 Commits
0.0.1-alph
...
0.0.1-oqta
| Author | SHA1 | Date | |
|---|---|---|---|
| 4fd49d0ea0 | |||
| 458514e04b | |||
| 1b8c00d7df | |||
| 5dbaa652c5 | |||
| fb411826ca | |||
| 3cce4fd900 | |||
| a67bfef0ce | |||
| 0af02afb20 | |||
| 17da27123e | |||
| f429512a14 | |||
| 933d194e5c | |||
| 162fd61936 |
@@ -20,12 +20,9 @@ jobs:
|
|||||||
uses: actions/setup-dotnet@v4
|
uses: actions/setup-dotnet@v4
|
||||||
with:
|
with:
|
||||||
dotnet-version: "10.0.x"
|
dotnet-version: "10.0.x"
|
||||||
- name: "Oqtane Framework restore"
|
- uses: nuget/setup-nuget@v2
|
||||||
run: dotnet restore ./oqtane.framework/Oqtane.slnx --verbosity detailed
|
with:
|
||||||
- name: "Oqtane Framework bauen"
|
nuget-version: '6.x'
|
||||||
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"
|
- name: "Build .deb"
|
||||||
run: ./run-build.sh "${{ gitea.ref_name }}" "./alumnihub_10.0_amd64"
|
run: ./run-build.sh "${{ gitea.ref_name }}" "./alumnihub_10.0_amd64"
|
||||||
- name: "Upload .deb"
|
- name: "Upload .deb"
|
||||||
|
|||||||
18
.gitmodules
vendored
18
.gitmodules
vendored
@@ -4,3 +4,21 @@
|
|||||||
[submodule "oqtane.framework"]
|
[submodule "oqtane.framework"]
|
||||||
path = oqtane.framework
|
path = oqtane.framework
|
||||||
url = https://git.kocoder.xyz/Diplomarbeit-Absolventenverein/oqtane.framework.git
|
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
1
Module.AdminModules
Submodule
Submodule Module.AdminModules added at 46af683546
1
Module.EventRegistration
Submodule
1
Module.EventRegistration
Submodule
Submodule Module.EventRegistration added at e22d360425
1
Module.HallOfFame
Submodule
1
Module.HallOfFame
Submodule
Submodule Module.HallOfFame added at 26e05710b3
1
Module.PremiumArea
Submodule
1
Module.PremiumArea
Submodule
Submodule Module.PremiumArea added at a1b5d0371d
1
Theme.SZUAbsolventenverein
Submodule
1
Theme.SZUAbsolventenverein
Submodule
Submodule Theme.SZUAbsolventenverein added at b5e8a436b4
@@ -1 +1,2 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
adduser --system alumnihub
|
||||||
@@ -1,2 +1 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
deluser oqtane
|
|
||||||
@@ -1,2 +1 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
useradd oqtane
|
|
||||||
@@ -2,14 +2,14 @@
|
|||||||
Description=Alumnihub Webservice
|
Description=Alumnihub Webservice
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
WorkingDirectory=/opt/oqtane
|
WorkingDirectory=/opt/alumnihub
|
||||||
ExecStart=/usr/bin/dotnet /opt/alumnihub/Oqtane.Server.dll
|
ExecStart=/usr/bin/dotnet /opt/alumnihub/Oqtane.Server.dll
|
||||||
Restart=always
|
Restart=always
|
||||||
# Restart service after 10 seconds if the dotnet service crashes:
|
# Restart service after 10 seconds if the dotnet service crashes:
|
||||||
RestartSec=5
|
RestartSec=5
|
||||||
KillSignal=SIGINT
|
KillSignal=SIGINT
|
||||||
SyslogIdentifier=alumnihub
|
SyslogIdentifier=alumnihub
|
||||||
User=oqtane
|
User=alumnihub
|
||||||
Environment=ASPNETCORE_ENVIRONMENT=Production
|
Environment=ASPNETCORE_ENVIRONMENT=Production
|
||||||
Environment=ASPNETCORE_URLS="http://127.0.0.1:5000"
|
Environment=ASPNETCORE_URLS="http://127.0.0.1:5000"
|
||||||
Environment=ASPNETCORE_FORWARDEDHEADERS_ENABLED=true
|
Environment=ASPNETCORE_FORWARDEDHEADERS_ENABLED=true
|
||||||
|
|||||||
1
fixProps
Submodule
1
fixProps
Submodule
Submodule fixProps added at 10f645be52
Submodule oqtane.framework updated: f3175b6b06...6db5c924c7
18
run-build.sh
18
run-build.sh
@@ -2,6 +2,24 @@
|
|||||||
VERSION="$1"
|
VERSION="$1"
|
||||||
DEBIAN_PACKAGE_PATH="$2"
|
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
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
echo $VERSION $DEBIAN_PACKAGE_PATH
|
echo $VERSION $DEBIAN_PACKAGE_PATH
|
||||||
|
|
||||||
echo "Version: ${VERSION}" >> $DEBIAN_PACKAGE_PATH/DEBIAN/control
|
echo "Version: ${VERSION}" >> $DEBIAN_PACKAGE_PATH/DEBIAN/control
|
||||||
|
|||||||
Reference in New Issue
Block a user