Add output to dev build workflow steps
All checks were successful
Build Dev PWA / Build-PWA (push) Successful in 14s

Signed-off-by: Justin Georgi <justin.georgi@gmail.com>
This commit is contained in:
2024-04-22 15:02:44 -07:00
parent 8fb050360f
commit e7a63674e6

View File

@@ -9,8 +9,12 @@ jobs:
- name: Build pwa
run: npm run build --prefix /home/mserver/ALVINN/ALVINN_f7/
- name: Clear previous dev pwa
run: rm -R /var/www/html/alvinn-dev/*
run: |
rm -R /var/www/html/alvinn-dev/*
echo "Old files removed"
- name: Copy new dev pwa
run: cp -R /home/mserver/ALVINN/ALVINN_f7/www/* /var/www/html/alvinn-dev
run: |
cp -R /home/mserver/ALVINN/ALVINN_f7/www/* /var/www/html/alvinn-dev
echo "New files copied"
- name: Final Status
run: echo "This job's status is ${{ job.status }}."