File tree 3 files changed +3
-40
lines changed
3 files changed +3
-40
lines changed Original file line number Diff line number Diff line change 1
- name : Deploy to Docker Hub and Render
1
+ name : Deploy to Render
2
2
3
3
on :
4
4
push :
5
5
branches :
6
6
- retina # Change to your deployment branch
7
7
8
8
jobs :
9
- build-and-push :
10
- runs-on : ubuntu-latest
11
-
12
- steps :
13
- - name : Checkout repository
14
- uses : actions/checkout@v3
15
-
16
- - name : Set up QEMU
17
- uses : docker/setup-qemu-action@v2
18
-
19
- - name : Set up Docker Buildx
20
- uses : docker/setup-buildx-action@v2
21
-
22
- - name : Log in to Docker Hub
23
- uses : docker/login-action@v2
24
- with :
25
- username : ${{ secrets.DOCKERHUB_USERNAME }}
26
- password : ${{ secrets.DOCKERHUB_PASSWORD }}
27
-
28
- - name : Build and push Docker image
29
- uses : docker/build-push-action@v4
30
- with :
31
- context : .
32
- platforms : linux/amd64
33
- push : true
34
- tags : seanyl/deepgit:app
35
-
36
9
deploy-to-render :
37
10
needs : build-and-push # Ensure this runs only after the Docker image is pushed
38
11
runs-on : ubuntu-latest
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2
2
"name" : " deepgit" ,
3
3
"version" : " 1.0.0-beta.4" ,
4
4
"scripts" : {
5
- "start" : " vite" ,
5
+ "start" : " vite preview --port $PORT --host " ,
6
6
"build" : " vite build" ,
7
7
"test" : " vitest" ,
8
8
"clean" : " prettier --write src" ,
87
87
" last 1 safari version"
88
88
]
89
89
}
90
- }
90
+ }
You can’t perform that action at this time.
0 commit comments