mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-07-09 03:04:19 -04:00
v0.3.1 Release (#105)
* Fix directory issue when building all the packages where directory got skewed. (#98) * Bump version for patch release due to bug in continue fuctionality. (#104) * Chore/version bump (#106) * Bump version for patch release due to bug in continue fuctionality. * Added develop branch for github actions
This commit is contained in:
parent
914cdac8fe
commit
4028ff3529
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
@ -2,9 +2,9 @@ name: .NET Core Build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
branches: [ main, develop ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
branches: [ main, develop ]
|
||||
types: [opened, synchronize, reopened]
|
||||
|
||||
jobs:
|
||||
|
@ -136,7 +136,7 @@ namespace API
|
||||
applicationLifetime.ApplicationStopping.Register(OnShutdown);
|
||||
applicationLifetime.ApplicationStarted.Register(() =>
|
||||
{
|
||||
Console.WriteLine("Kavita - v0.3");
|
||||
Console.WriteLine("Kavita - v0.3.1");
|
||||
});
|
||||
}
|
||||
|
||||
|
10
build.sh
10
build.sh
@ -62,7 +62,6 @@ Package()
|
||||
|
||||
ProgressStart "Creating $runtime Package for $framework"
|
||||
|
||||
BuildUI
|
||||
|
||||
echo "Building"
|
||||
cd API
|
||||
@ -91,16 +90,25 @@ Package()
|
||||
RID="$1"
|
||||
|
||||
Build
|
||||
BuildUI
|
||||
|
||||
dir=$PWD
|
||||
|
||||
if [[ -z "$RID" ]];
|
||||
then
|
||||
Package "net5.0" "win-x64"
|
||||
cd "$dir"
|
||||
Package "net5.0" "win-x86"
|
||||
cd "$dir"
|
||||
Package "net5.0" "linux-x64"
|
||||
cd "$dir"
|
||||
Package "net5.0" "linux-musl-x64"
|
||||
cd "$dir"
|
||||
Package "net5.0" "osx-x64"
|
||||
cd "$dir"
|
||||
else
|
||||
Package "net5.0" "$RID"
|
||||
cd "$dir"
|
||||
fi
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user