Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ inputs:
description: Number of days to retain artifacts
required: false
default: "14"
template_file:
description: Path to SAM template file
required: false
default: template.yaml
packaged_template_file:
description: Path to packaged SAM template file
required: false
Expand All @@ -34,7 +38,8 @@ runs:
uses: ServerlessOpsIO/gha-package-aws-sam@v1
with:
aws_account_region: ${{ inputs.aws_account_region }}
packaged_template_file: packaged-template.yaml
template_file: ${{ inputs.template_file }}
packaged_template_file: ${{ inputs.packaged_template_file }}
sam_s3_bucket: ${{ inputs.sam_s3_bucket }}
sam_s3_prefix: ${{ inputs.sam_s3_prefix }}

Expand Down
Loading