Skip to content
This repository has been archived by the owner on Dec 17, 2019. It is now read-only.

A Github Action which uses logs into AWS ECR and returns the login credentials for Docker

License

Notifications You must be signed in to change notification settings

effata/ecr-login-action

 
 

Repository files navigation

ECR-Login-Action

Actions Status

This Action for Docker logs into AWS ECR and gets the timely bound credentials for Docker.

Usage

Example pipeline

name: Publish Docker
on: [push]
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@master
    - name: Login to ECR
      id: ecr
      uses: elgohr/ecr-login-action@master
      with:
        access_key: ${{ secrets.AWS_ACCESS_KEY }}
        secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
        region: ${{ secrets.AWS_REGION }}
    - name: Publish to Registry
      uses: elgohr/Publish-Docker-Github-Action@master
      with:
        name: myDocker/repository
        username: ${{ steps.ecr.outputs.username }}
        password: ${{ steps.ecr.outputs.password }}
        registry: ${{ steps.ecr.outputs.registry }}

Mandatory arguments

access_key is the AWS access key
secret_access_key is the AWS secret access key
region the region you would like to login to

Outputs

username the username for logging in
password the password for logging in
registry the registry to log in to

About

A Github Action which uses logs into AWS ECR and returns the login credentials for Docker

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • Shell 80.4%
  • Dockerfile 19.6%