We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26beaa9 commit 5381ffaCopy full SHA for 5381ffa
.github/workflows/deploy.yml
@@ -32,14 +32,14 @@ jobs:
32
ssh-add ~/.ssh/deploy-key
33
34
# Clone repo if not exists, otherwise pull
35
- if [ ! -d "/home/ubuntu/skribble-app/.git" ]; then
36
- git clone git@github.com:paramsgit/scribble.git /home/ubuntu/skribble-app
+ if [ ! -d "/home/ubuntu/scribble/.git" ]; then
+ git clone git@github.com:paramsgit/scribble.git /home/ubuntu
37
else
38
- cd /home/ubuntu/skribble-app
+ cd /home/ubuntu/scribble
39
git pull origin main
40
fi
41
42
# Run docker compose
43
44
docker compose down
45
docker compose up -d --build
0 commit comments