File tree 1 file changed +24
-15
lines changed
1 file changed +24
-15
lines changed Original file line number Diff line number Diff line change
1
+ name : Deploy master branch
2
+
1
3
on :
2
4
push :
3
5
branches :
4
6
- main
5
7
workflow_dispatch :
6
8
# This allows the workflow to be manually triggered
7
9
8
- name : Deploy master branch
9
-
10
10
jobs :
11
11
deploy :
12
- name : deploy
12
+ name : Deploy
13
13
runs-on : ubuntu-latest
14
14
15
+ strategy :
16
+ matrix :
17
+ node-version : [18.x]
18
+
15
19
steps :
16
- - uses : actions/checkout@v2
20
+ - uses : actions/checkout@v3
21
+ - name : Use Node.js ${{ matrix.node-version }}
22
+ uses : actions/setup-node@v3
23
+ with :
24
+ node-version : ${{ matrix.node-version }}
25
+ - run : npm ci
17
26
18
- # Deployment of your project
19
- - name : serverless deploy
20
- uses : serverless/github-action@master
21
- with :
22
- args : deploy
23
- env :
24
- # To link with your Serverless Framework account, equivalent to login
25
- SERVERLESS_ACCESS_KEY : ${{ secrets.SERVERLESS_ACCESS_KEY }}
26
- # The AWS Credentials
27
- AWS_ACCESS_KEY_ID : ${{ secrets.AWS_ACCESS_KEY_ID }}
28
- AWS_SECRET_ACCESS_KEY : ${{ secrets.AWS_SECRET_ACCESS_KEY }}
27
+ # Deployment of your project
28
+ - name : Serverless deploy
29
+ uses : serverless/github-action@master
30
+ with :
31
+ args : deploy
32
+ env :
33
+ # To link with your Serverless Framework account, equivalent to login
34
+ SERVERLESS_ACCESS_KEY : ${{ secrets.SERVERLESS_ACCESS_KEY }}
35
+ # The AWS Credentials
36
+ AWS_ACCESS_KEY_ID : ${{ secrets.AWS_ACCESS_KEY_ID }}
37
+ AWS_SECRET_ACCESS_KEY : ${{ secrets.AWS_SECRET_ACCESS_KEY }}
You can’t perform that action at this time.
0 commit comments