We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e36a34f + 9df65e9 commit ce3915dCopy full SHA for ce3915d
.github/workflows/autoBuild.yml
@@ -23,16 +23,13 @@ jobs:
23
username: ${{ secrets.USERNAME }}
24
key: ${{ secrets.PRIVATE_KEY }}
25
port: ${{ secrets.PORT }}
26
-
27
- - name: Pull latest code from dev branch
28
- run: |
29
- cd /home/ubuntu/react
30
- git pull origin dev
31
32
- - name: Install dependencies
33
34
- npm install
35
36
- - name: Build React app using Vite
37
38
- npm run build
+ script: |
+ # Pull latest code from dev branch
+ cd /home/ubuntu/react
+ git pull origin dev
+
+ # Install dependencies
+ npm install
+ # Build React app using Vite
+ npm run build
0 commit comments