File size: 382 Bytes
e191448
 
be9e41e
e191448
ac1da04
e191448
 
 
 
 
 
 
be9e41e
e191448
 
 
ac1da04
e191448
be9e41e
ac1da04
 
be9e41e
 
 
 
ac1da04
 
e191448
be9e41e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/bash

cd /app/project || exit

echo "Updating repository..."

git pull origin main

echo "Installing dependencies..."

npm install

echo "Building latest version..."

npm run build

rm -rf /var/www/html/*

# Vite
if [ -d "dist" ]; then
    cp -r dist/* /var/www/html/
fi

# CRA
if [ -d "build" ]; then
    cp -r build/* /var/www/html/
fi

echo "Deployment updated at $(date)"