diff --git a/.github/workflows/nightly-docker.yml b/.github/workflows/nightly-docker.yml index 98556c37f..b7f49dcf3 100644 --- a/.github/workflows/nightly-docker.yml +++ b/.github/workflows/nightly-docker.yml @@ -25,16 +25,23 @@ jobs: with: node-version: '14' - run: | + echo 'Checking folder structure' + ls -l + cd Kavita-webui/ || exit echo 'Installing web dependencies' npm install + echo 'Building UI' npm run prod + echo 'Checking dist folder for compiling integrity' ls -l dist + echo 'Copying back to Kavita wwwroot' - mkdir ../Kavita/API/wwwroot - cp -r dist/* ../Kavita/API/wwwroot + mkdir ../API/wwwroot + rsync -a dist/ ../API/wwwroot/ + echo 'Checking Kavita wwwroot for copying integrity' ls -l ../Kavita/API/wwwroot cd ../ || exit diff --git a/action-build.sh b/action-build.sh index ce7e5ed75..4306c7aee 100755 --- a/action-build.sh +++ b/action-build.sh @@ -34,6 +34,9 @@ Package() local runtime="$2" local lOutputFolder=../_output/"$runtime"/Kavita + echo "Integrity check on root folder" + ls -l + ProgressStart "Creating $runtime Package for $framework" # TODO: Use no-restore? Because Build should have already done it for us