forked from aws-actions/aws-codebuild-run-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
36 lines (36 loc) · 888 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: '"AWS CodeBuild run build" Action For GitHub Actions'
description: "Execute CodeBuild::startBuild for the current repo."
branding:
icon: "cloud"
color: "orange"
inputs:
deployment-config-name:
description: "Config name"
required: false
deployment-group-name:
description: "Config name"
required: false
file-exists-behavior:
description: "File exists behavior"
required: false
s3-bucket:
description: "S3 Bucket"
required: false
s3-key:
description: "S3 Key"
required: false
bundle-type:
description: "Bundle type"
required: false
deployment-type:
description: "Deployment type"
required: false
branch-name:
description: "Current branch name"
required: false
outputs:
aws-deployment-id:
description: "The AWS CodeBuild Build ID for this build."
runs:
using: "node12"
main: "dist/index.js"