We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5795000 + 191e1c2 commit 021d9d1Copy full SHA for 021d9d1
1 file changed
.github/workflows/deploy.yaml
@@ -30,10 +30,16 @@ jobs:
30
# Navigate to the executeme directory on the VPS.
31
cd ~/workspace/executeme
32
33
+ # make sure we are in executeme directory
34
+ ls -a
35
+
36
# Pull the latest code from the 'main' branch of the GitHub repository.
- git pull
37
+ git pull origin main
38
39
+ # Check git status to make sure everything is up to date
40
+ git status
41
42
# Execute your bash script.
- bash ./script.sh
43
+ bash ./scripts.sh
44
45
echo "Deployment complete!"
0 commit comments