Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 775 Bytes

README.md

File metadata and controls

39 lines (29 loc) · 775 Bytes

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'