mirror of
https://github.com/yeslayla/zappa-deploy-action.git
synced 2025-01-13 12:33:42 +01:00
19 lines
401 B
YAML
19 lines
401 B
YAML
name: "Zappa Deploy"
|
|
description: "Deploys a Zappa application to AWS"
|
|
author: josephbmanley
|
|
inputs:
|
|
directory:
|
|
description: ""
|
|
default: "."
|
|
environment:
|
|
description: 'Name of the preset in `zappa_settings` to use'
|
|
required: true
|
|
runs:
|
|
using: docker
|
|
image: Dockerfile
|
|
args:
|
|
- ${{ inputs.directory }}
|
|
- ${{ inputs.environment }}
|
|
branding:
|
|
icon: package
|
|
color: blue |