mirror of
https://github.com/docker/login-action.git
synced 2024-11-09 23:33:24 +01:00
Test login against registries part 2
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
parent
71b3c789fa
commit
27c3146301
3 changed files with 81 additions and 81 deletions
154
.github/workflows/ci.yml
vendored
154
.github/workflows/ci.yml
vendored
|
@ -21,7 +21,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Checkout
|
name: Checkout
|
||||||
uses: actions/checkout@v2.3.2
|
uses: actions/checkout@v2
|
||||||
-
|
-
|
||||||
name: Login to DockerHub
|
name: Login to DockerHub
|
||||||
uses: ./
|
uses: ./
|
||||||
|
@ -29,59 +29,59 @@ jobs:
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
# ecr:
|
ecr:
|
||||||
# runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
# strategy:
|
strategy:
|
||||||
# fail-fast: false
|
fail-fast: false
|
||||||
# matrix:
|
matrix:
|
||||||
# os:
|
os:
|
||||||
# - ubuntu-20.04
|
- ubuntu-20.04
|
||||||
# - ubuntu-18.04
|
- ubuntu-18.04
|
||||||
# - ubuntu-16.04
|
- ubuntu-16.04
|
||||||
# steps:
|
steps:
|
||||||
# -
|
-
|
||||||
# name: Checkout
|
name: Checkout
|
||||||
# uses: actions/checkout@v2.3.1
|
uses: actions/checkout@v2
|
||||||
# -
|
-
|
||||||
# name: Login to ECR
|
name: Login to ECR
|
||||||
# uses: ./
|
uses: ./
|
||||||
# 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
|
||||||
# username: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
username: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||||
# password: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
password: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
#
|
|
||||||
# ecr-aws-creds:
|
ecr-aws-creds:
|
||||||
# runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
# strategy:
|
strategy:
|
||||||
# fail-fast: false
|
fail-fast: false
|
||||||
# matrix:
|
matrix:
|
||||||
# os:
|
os:
|
||||||
# - ubuntu-20.04
|
- ubuntu-20.04
|
||||||
# - ubuntu-18.04
|
- ubuntu-18.04
|
||||||
# - ubuntu-16.04
|
- ubuntu-16.04
|
||||||
# steps:
|
steps:
|
||||||
# -
|
-
|
||||||
# name: Checkout
|
name: Checkout
|
||||||
# uses: actions/checkout@v2.3.1
|
uses: actions/checkout@v2
|
||||||
# -
|
-
|
||||||
# name: Configure AWS Credentials
|
name: Configure AWS Credentials
|
||||||
# uses: aws-actions/configure-aws-credentials@v1
|
uses: aws-actions/configure-aws-credentials@v1
|
||||||
# with:
|
with:
|
||||||
# aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||||
# aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
# aws-region: ${{ secrets.AWS_REGION }}
|
aws-region: ${{ secrets.AWS_REGION }}
|
||||||
# -
|
-
|
||||||
# name: Login to ECR
|
name: Login to ECR
|
||||||
# uses: ./
|
uses: ./
|
||||||
# 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
|
||||||
|
|
||||||
github-package:
|
github-package:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Checkout
|
name: Checkout
|
||||||
uses: actions/checkout@v2.3.2
|
uses: actions/checkout@v2
|
||||||
-
|
-
|
||||||
name: Login to GitHub Package Registry
|
name: Login to GitHub Package Registry
|
||||||
uses: ./
|
uses: ./
|
||||||
|
@ -95,7 +95,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Checkout
|
name: Checkout
|
||||||
uses: actions/checkout@v2.3.2
|
uses: actions/checkout@v2
|
||||||
-
|
-
|
||||||
name: Login to GitHub Package Registry
|
name: Login to GitHub Package Registry
|
||||||
uses: ./
|
uses: ./
|
||||||
|
@ -109,7 +109,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Checkout
|
name: Checkout
|
||||||
uses: actions/checkout@v2.3.2
|
uses: actions/checkout@v2
|
||||||
-
|
-
|
||||||
name: Login to GitLab
|
name: Login to GitLab
|
||||||
uses: ./
|
uses: ./
|
||||||
|
@ -118,30 +118,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.3.2
|
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.3.2
|
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 }}
|
||||||
|
|
4
.github/workflows/labels.yml
vendored
4
.github/workflows/labels.yml
vendored
|
@ -14,7 +14,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Checkout
|
name: Checkout
|
||||||
uses: actions/checkout@v2.3.2
|
uses: actions/checkout@v2
|
||||||
-
|
-
|
||||||
name: Run Labeler
|
name: Run Labeler
|
||||||
uses: crazy-max/ghaction-github-labeler@v3.0.0
|
uses: crazy-max/ghaction-github-labeler@v3
|
||||||
|
|
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
|
@ -24,7 +24,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Checkout
|
name: Checkout
|
||||||
uses: actions/checkout@v2.3.2
|
uses: actions/checkout@v2
|
||||||
-
|
-
|
||||||
name: Install
|
name: Install
|
||||||
run: yarn install
|
run: yarn install
|
||||||
|
@ -33,7 +33,7 @@ jobs:
|
||||||
run: yarn run test
|
run: yarn run test
|
||||||
-
|
-
|
||||||
name: Upload coverage
|
name: Upload coverage
|
||||||
uses: codecov/codecov-action@v1.0.13
|
uses: codecov/codecov-action@v1
|
||||||
if: success()
|
if: success()
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.CODECOV_TOKEN }}
|
token: ${{ secrets.CODECOV_TOKEN }}
|
||||||
|
|
Loading…
Reference in a new issue