Open
Description
Opening new issue to keep track of the implementation because original issue was closed #72
Right now we're using this action to login to IBM Cloud Container Registry in different regions:
- name: Login to IBM Cloud Container Registry US
uses: docker/login-action@v1
with:
registry: us.icr.io
username: ${{ env.ICR_USERNAME }}
password: ${{ env.ICR_PASSWORD }}
- name: Login to IBM Cloud Container Registry UK
uses: docker/login-action@v1
with:
registry: uk.icr.io
username: ${{ env.ICR_USERNAME }}
password: ${{ env.ICR_PASSWORD }}
Credentials are the same for all regions, it's just the address of the registry that differs.
Could we possibly support something like this?
- name: Login to IBM Cloud Container Registry ALL
uses: docker/login-action@v1
with:
registry: |
us.icr.io
uk.icr.io
de.icr.io
au.icr.io
jp.icr.io
username: ${{ env.ICR_USERNAME }}
password: ${{ env.ICR_PASSWORD }}