From f50a21dd2226daae0d0ee1da0c5c74296cf8a7cf Mon Sep 17 00:00:00 2001 From: Kizaing Date: Thu, 24 Jun 2021 22:19:42 -0400 Subject: [PATCH] Hotfix/docker workflow (#324) * Fixed file pathing for automated docker builds * Added back in renaming the Kavita executable Co-authored-by: Chris Plaatjes --- action-build.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/action-build.sh b/action-build.sh index 9fd94217c..faaaa4f01 100755 --- a/action-build.sh +++ b/action-build.sh @@ -42,6 +42,9 @@ Package() echo dotnet publish -c Release --no-restore --self-contained --runtime $runtime -o "$lOutputFolder" --framework $framework dotnet publish -c Release --no-restore --self-contained --runtime $runtime -o "$lOutputFolder" --framework $framework + echo "Renaming API -> Kavita" + mv "$lOutputFolder"/API "$lOutputFolder"/Kavita + echo "Copying Install information" cp ../INSTALL.txt "$lOutputFolder"/README.txt