Skip to content

Commit

Permalink
feat: add aws-app-name, app-bucket inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
ShauryaAg committed Oct 22, 2021
1 parent a302051 commit 63c47b0
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ inputs:
env-bucket:
type: string
description: "Bucket where the ENV Secrets are stored"
aws-app-name:
type: string
description: "AWS App Name"
app-bucket:
type: string
description: "Bucket where the deployment is stored"
runs:
using: "composite"
steps:
Expand All @@ -24,3 +30,7 @@ runs:
ENV_BUCKET: ${{ inputs.env-bucket }}
- run: chmod +x ./deploy.sh && ./scripts/deploy.sh
shell: bash
env:
AWS_APP_NAME: ${{ inputs.aws-app-name }}
APP_BUCKET: ${{ inputs.app-bucket }}
AWS_FILENAME: ${{ inputs.aws-app-name }}-${{ github.sha }}

0 comments on commit 63c47b0

Please sign in to comment.