This Action wraps the Serverless Framework to enable common Serverless commands.
An example workflow to deploy a project with serverless:
workflow "Deploy with Serverless" {
on = "push"
resolves = "serverless deploy"
}
action "serverless deploy" {
uses = "serverless/github-action@master"
secrets = ["AWS_ACCESS_KEY_ID", "AWS_SECRET_ACCESS_KEY"]
args = "deploy"
}
AWS_ACCESS_KEY_ID
- Required. The AWS Access Key IDAWS_SECRET_ACCESS_KEY
- Required. The AWS Secret Access Key
The Dockerfile and associated scripts and documentation in this project are released under the Apache-2 license.