Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- id: ecr-deploy
uses: bitovi/github-actions-deploy-aws-ecr-registry@v0.1.0
uses: bitovi/github-actions-deploy-aws-ecr-registry@v0.1.1
with:
aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws_default_region: us-east-1

aws_ecr_repo_create: true
```

### Inputs
Expand Down Expand Up @@ -85,7 +83,7 @@ The following inputs can be used as `step.with` keys
#### **ECR Inputs**
| Name | Type | Description |
|------------------|---------|------------------------------------|
| `aws_ecr_repo_create` | Boolean | Determines whether a repository will be created. |
| `aws_ecr_repo_create` | Boolean | Determines whether a repository will be created. Defaults to `true`. |
| `aws_ecr_repo_type` | String | The type of repository to create. Either `public` or `private`. Defaults to `private`. |
| `aws_ecr_repo_name` | String | The name of the repository. If none, will use the default resource-identifier. |
| `aws_ecr_repo_mutable` | Boolean | The tag mutability setting for the repository. Set this to true if `MUTABLE`. Defaults to false, so `IMMUTABLE`. |
Expand Down
3 changes: 2 additions & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ inputs:
aws_ecr_repo_create:
description: 'Determines whether a repository will be created'
required: false
default: true
aws_ecr_repo_type:
description: 'The type of repository to create. Either `public` or `private`. Defaults to `private`.'
required: false
Expand Down Expand Up @@ -135,7 +136,7 @@ runs:
steps:
- name: Deploy with BitOps
id: deploy
uses: bitovi/github-actions-commons@v0.0.7
uses: bitovi/github-actions-commons@v1
with:
# Current repo vars
bitops_code_only: ${{ inputs.bitops_code_only }}
Expand Down