Commit 90a563e 1 parent c9c0540 commit 90a563e Copy full SHA for 90a563e
File tree 2 files changed +33
-0
lines changed
2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Deploy
2
+ on :
3
+ release :
4
+ types : [released]
5
+
6
+ jobs :
7
+ test :
8
+ uses : ./.github/workflows/node.yml
9
+ lint :
10
+ uses : ./.github/workflows/node.yml
11
+ build :
12
+ runs-on : ubuntu-latest
13
+ container : node:20-slim
14
+ needs : [test, lint]
15
+
16
+ steps :
17
+ - name : Checkout the repository
18
+ uses : actions/checkout@v4
19
+ - name : Set up Docker Buildx
20
+ uses : docker/setup-buildx-action@v3
21
+ - name : Login to container registry
22
+ uses : docker/login-action@v3
23
+ with :
24
+ registry : ${{secrets.REGISTRY_URL}}
25
+ username : ${{secrets.REGISTRY_USERNAME}}
26
+ password : ${{secrets.REGISTRY_PASSWORD}}
27
+ - name : Build and push
28
+ uses : docker/build-push-action@v6
29
+ with :
30
+ push : true
31
+ tags : rv-backend:latest
32
+
Original file line number Diff line number Diff line change 1
1
name : Build
2
2
3
3
on :
4
+ workflow_call :
4
5
push :
5
6
branches : [develop, master]
6
7
pull_request :
You can’t perform that action at this time.
0 commit comments