Commit a0ee52f 1 parent febc3dc commit a0ee52f Copy full SHA for a0ee52f
File tree 1 file changed +14
-6
lines changed
1 file changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -28,18 +28,26 @@ jobs:
28
28
GH_PRIVATE_KEY : ${{ secrets.GH_PRIVATE_KEY }}
29
29
GH_WEBHOOK_SECRET : ${{ secrets.GH_WEBHOOK_SECRET }}
30
30
steps :
31
- - uses : actions/checkout@v4
32
- - uses : actions/setup-node@v4
31
+ - name : Checkout
32
+ uses : actions/checkout@v4
33
+
34
+ - name : Set up Node.js
35
+ uses : actions/setup-node@v4
33
36
with :
34
37
node-version : " 18"
35
38
cache : yarn
36
39
37
- - run : yarn
40
+ - name : Install Dependencies
41
+ run : yarn
38
42
39
- - uses : aws-actions/configure-aws-credentials@v4
43
+ - name : Configure AWS Credentials
44
+ uses : aws-actions/configure-aws-credentials@v4
40
45
with :
41
46
role-to-assume : ${{ vars.AWS_DEPLOY_ROLE }}
42
47
aws-region : ${{ vars.AWS_REGION }}
43
48
44
- - run : yarn deploy --stage $NODE_ENV
45
- - run : yarn serverless info --stage $NODE_ENV
49
+ - name : Deploy
50
+ run : yarn deploy --stage $NODE_ENV
51
+
52
+ - name : Output Serverless Info
53
+ run : echo $(yarn serverless info --stage $NODE_ENV) >> $GITHUB_STEP_SUMMARY
You can’t perform that action at this time.
0 commit comments