Compare commits
2 Commits
0.0.1-oqta
...
0.0.1-oqta
| Author | SHA1 | Date | |
|---|---|---|---|
| 4fd49d0ea0 | |||
| 458514e04b |
@@ -20,6 +20,9 @@ jobs:
|
||||
uses: actions/setup-dotnet@v4
|
||||
with:
|
||||
dotnet-version: "10.0.x"
|
||||
- uses: nuget/setup-nuget@v2
|
||||
with:
|
||||
nuget-version: '6.x'
|
||||
- name: "Build .deb"
|
||||
run: ./run-build.sh "${{ gitea.ref_name }}" "./alumnihub_10.0_amd64"
|
||||
- name: "Upload .deb"
|
||||
|
||||
3
.gitmodules
vendored
3
.gitmodules
vendored
@@ -19,3 +19,6 @@
|
||||
[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
|
||||
|
||||
Submodule Module.AdminModules updated: 002b3cafff...46af683546
Submodule Module.EventRegistration updated: 9b1ea5ada1...e22d360425
Submodule Module.HallOfFame updated: 2d8c6736a7...26e05710b3
Submodule Module.PremiumArea updated: 0942f0b308...a1b5d0371d
Submodule Theme.SZUAbsolventenverein updated: 5b52989230...b5e8a436b4
1
fixProps
Submodule
1
fixProps
Submodule
Submodule fixProps added at 10f645be52
11
run-build.sh
11
run-build.sh
@@ -2,19 +2,24 @@
|
||||
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
|
||||
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: ${VERSION}" >> $DEBIAN_PACKAGE_PATH/DEBIAN/control
|
||||
|
||||
Reference in New Issue
Block a user