tuxillo / aws-amplify-deployment

GitHub action creates a deployment into an existing Amplify aplication

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Amplify Deployment

The amplify_deployment GitHub action creates a deployment into an existing Amplify aplication.

As this use the AWS SDK, credentials should be set beforehand on env variables.

Usage

- uses: luisgreen/amplify_deployment@main
  with:
    # Amplify Application ID
    # required: true
    appId: ''

    # Amplify Application branch to deploy
    # required: true
    branchName: ''

    
    # Path where the artifact is located to be deployed
    # required: true
    artifactPath:

    # Region of the Amplify Application
    # required: true
    region:

Sample

- uses: luisgreen/amplify_deployment@main
  with:
    appId: 'asd8adsjasd9'
    branchName: 'master'
    artifactPath: './myapp.zip'
    region: 'us-west-2'

About

GitHub action creates a deployment into an existing Amplify aplication


Languages

Language:JavaScript 100.0%