https://github.com/allbarbos/serverless-deploy-action
Action for deploying with the Serverless Framework 1.72.0
https://github.com/allbarbos/serverless-deploy-action
github-actions serverless serverless-framework
Last synced: 2 months ago
JSON representation
Action for deploying with the Serverless Framework 1.72.0
- Host: GitHub
- URL: https://github.com/allbarbos/serverless-deploy-action
- Owner: allbarbos
- License: mit
- Created: 2020-06-11T17:14:34.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-11T18:57:06.000Z (almost 6 years ago)
- Last Synced: 2025-11-27T12:14:50.229Z (4 months ago)
- Topics: github-actions, serverless, serverless-framework
- Language: Dockerfile
- Homepage:
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Serverless Deploy Github Action
This action wraps the Serverless Framework latest versions.
## Usage
```
name: CI
on:
push:
branches: [ master ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# if using plugins
- name: install plugins
run: npm i
- name: serverless deploy
uses: allbarbos/serverless-deploy-action@master
with:
args: deploy
env:
SERVERLESS_ACCESS_KEY: ${{ secrets.SERVERLESS_ACCESS_KEY }}
# or if using AWS creds directly
# AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
# AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
```