Skip to content

:octocat: A Github Action for deploying with the Serverless Framework

License

Notifications You must be signed in to change notification settings

sree141/github-action

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

GitHub Deployer for Serverless

This Action wraps the Serverless Framework to enable common Serverless commands.

Usage

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"
}

Secrets

  • AWS_ACCESS_KEY_ID - Required. The AWS Access Key ID
  • AWS_SECRET_ACCESS_KEY - Required. The AWS Secret Access Key

License

The Dockerfile and associated scripts and documentation in this project are released under the Apache-2 license.

About

:octocat: A Github Action for deploying with the Serverless Framework

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dockerfile 100.0%