mirror of
https://github.com/docker/login-action.git
synced 2024-11-09 15:23:25 +01:00
Update for public ECR
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
parent
b17cf6ab8f
commit
c718c795e7
1 changed files with 76 additions and 27 deletions
103
.github/workflows/ci.yml
vendored
103
.github/workflows/ci.yml
vendored
|
@ -76,6 +76,55 @@ jobs:
|
||||||
with:
|
with:
|
||||||
registry: ${{ secrets.AWS_ACCOUNT_NUMBER }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com
|
registry: ${{ secrets.AWS_ACCOUNT_NUMBER }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com
|
||||||
|
|
||||||
|
ecr-public:
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
os:
|
||||||
|
- ubuntu-20.04
|
||||||
|
- ubuntu-18.04
|
||||||
|
- ubuntu-16.04
|
||||||
|
steps:
|
||||||
|
-
|
||||||
|
name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
-
|
||||||
|
name: Login to Public ECR
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
registry: public.ecr.aws
|
||||||
|
username: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||||
|
password: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
|
env:
|
||||||
|
AWS_REGION: ${{ secrets.AWS_REGION }}
|
||||||
|
|
||||||
|
ecr-public-aws-creds:
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
os:
|
||||||
|
- ubuntu-20.04
|
||||||
|
- ubuntu-18.04
|
||||||
|
- ubuntu-16.04
|
||||||
|
steps:
|
||||||
|
-
|
||||||
|
name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
-
|
||||||
|
name: Configure AWS Credentials
|
||||||
|
uses: aws-actions/configure-aws-credentials@v1
|
||||||
|
with:
|
||||||
|
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||||
|
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
|
aws-region: ${{ secrets.AWS_REGION }}
|
||||||
|
-
|
||||||
|
name: Login to Public ECR
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
registry: public.ecr.aws
|
||||||
|
|
||||||
github-package:
|
github-package:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
@ -118,30 +167,30 @@ jobs:
|
||||||
username: ${{ secrets.GITLAB_USERNAME }}
|
username: ${{ secrets.GITLAB_USERNAME }}
|
||||||
password: ${{ secrets.GITLAB_TOKEN }}
|
password: ${{ secrets.GITLAB_TOKEN }}
|
||||||
|
|
||||||
google-artifact:
|
# google-artifact:
|
||||||
runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
steps:
|
# steps:
|
||||||
-
|
# -
|
||||||
name: Checkout
|
# name: Checkout
|
||||||
uses: actions/checkout@v2
|
# uses: actions/checkout@v2
|
||||||
-
|
# -
|
||||||
name: Login to Google Artifact Registry
|
# name: Login to Google Artifact Registry
|
||||||
uses: ./
|
# uses: ./
|
||||||
with:
|
# with:
|
||||||
registry: ${{ secrets.GAR_LOCATION }}-docker.pkg.dev
|
# registry: ${{ secrets.GAR_LOCATION }}-docker.pkg.dev
|
||||||
username: _json_key
|
# username: _json_key
|
||||||
password: ${{ secrets.GAR_JSON_KEY }}
|
# password: ${{ secrets.GAR_JSON_KEY }}
|
||||||
|
#
|
||||||
google-container:
|
# google-container:
|
||||||
runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
steps:
|
# steps:
|
||||||
-
|
# -
|
||||||
name: Checkout
|
# name: Checkout
|
||||||
uses: actions/checkout@v2
|
# uses: actions/checkout@v2
|
||||||
-
|
# -
|
||||||
name: Login to Google Container Registry
|
# name: Login to Google Container Registry
|
||||||
uses: ./
|
# uses: ./
|
||||||
with:
|
# with:
|
||||||
registry: gcr.io
|
# registry: gcr.io
|
||||||
username: _json_key
|
# username: _json_key
|
||||||
password: ${{ secrets.GCR_JSON_KEY }}
|
# password: ${{ secrets.GCR_JSON_KEY }}
|
||||||
|
|
Loading…
Reference in a new issue