adding ls -l to workflow for integrity check (#328)

This commit is contained in:
Robbie Davis 2021-06-25 10:57:26 -04:00 committed by GitHub
parent 61c8ce36e0
commit dfd4b1ed6f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View File

@ -30,9 +30,13 @@ jobs:
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 ../API/wwwroot
cp -r dist/* ../API/wwwroot
echo 'Checking Kavita wwwroot for copying integrity'
ls -l ../API/wwwroot
cd ../ || exit
- name: Compile dotnet app

View File

@ -32,9 +32,13 @@ jobs:
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 ../API/wwwroot
cp -r dist/* ../API/wwwroot
echo 'Checking Kavita wwwroot for copying integrity'
ls -l ../API/wwwroot
cd ../ || exit
- name: Compile dotnet app