adding ls -l to workflow for integrity check (#328)
This commit is contained in:
parent
61c8ce36e0
commit
dfd4b1ed6f
2 changed files with 8 additions and 0 deletions
4
.github/workflows/nightly-docker.yml
vendored
4
.github/workflows/nightly-docker.yml
vendored
|
|
@ -30,9 +30,13 @@ jobs:
|
||||||
npm install
|
npm install
|
||||||
echo 'Building UI'
|
echo 'Building UI'
|
||||||
npm run prod
|
npm run prod
|
||||||
|
echo 'Checking dist folder for compiling integrity'
|
||||||
|
ls -l dist
|
||||||
echo 'Copying back to Kavita wwwroot'
|
echo 'Copying back to Kavita wwwroot'
|
||||||
mkdir ../API/wwwroot
|
mkdir ../API/wwwroot
|
||||||
cp -r dist/* ../API/wwwroot
|
cp -r dist/* ../API/wwwroot
|
||||||
|
echo 'Checking Kavita wwwroot for copying integrity'
|
||||||
|
ls -l ../API/wwwroot
|
||||||
cd ../ || exit
|
cd ../ || exit
|
||||||
|
|
||||||
- name: Compile dotnet app
|
- name: Compile dotnet app
|
||||||
|
|
|
||||||
4
.github/workflows/stable-docker.yml
vendored
4
.github/workflows/stable-docker.yml
vendored
|
|
@ -32,9 +32,13 @@ jobs:
|
||||||
npm install
|
npm install
|
||||||
echo 'Building UI'
|
echo 'Building UI'
|
||||||
npm run prod
|
npm run prod
|
||||||
|
echo 'Checking dist folder for compiling integrity'
|
||||||
|
ls -l dist
|
||||||
echo 'Copying back to Kavita wwwroot'
|
echo 'Copying back to Kavita wwwroot'
|
||||||
mkdir ../API/wwwroot
|
mkdir ../API/wwwroot
|
||||||
cp -r dist/* ../API/wwwroot
|
cp -r dist/* ../API/wwwroot
|
||||||
|
echo 'Checking Kavita wwwroot for copying integrity'
|
||||||
|
ls -l ../API/wwwroot
|
||||||
cd ../ || exit
|
cd ../ || exit
|
||||||
|
|
||||||
- name: Compile dotnet app
|
- name: Compile dotnet app
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue