"Create AWS ECR Repository" Action For GitHub Actions
ActionsBuild a Docker container for the hastexo Backup plugin and upload to AWS ECR
v0.1.1
LatestTags
(1)Creates an AWS Elastic Container Registry repository if it does not already exist.
name: Example workflow
on: workflow_dispatch
jobs:
build:
runs-on: ubuntu-latest
steps:
# required antecedent
- uses: actions/checkout@v1
# required antecedent
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.THE_NAME_OF_YOUR_AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.THE_NAME_OF_YOUR_AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-2
# This action
- name: Create an AWS ECR repository
uses: openedx-actions/create-aws-ecr-repository
with:
aws-ecr-repository: my_new_repo
"Create AWS ECR Repository" Action For GitHub Actions is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.