mirror of
https://github.com/docker/login-action.git
synced 2024-11-09 23:33:24 +01:00
Add tests again GitLab and GitHub Package Registry
This commit is contained in:
parent
7e07bf5fa3
commit
c252382ab9
1 changed files with 56 additions and 4 deletions
60
.github/workflows/ci.yml
vendored
60
.github/workflows/ci.yml
vendored
|
@ -7,7 +7,7 @@ on:
|
||||||
- releases/v*
|
- releases/v*
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
main:
|
dockerhub:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
@ -20,11 +20,63 @@ jobs:
|
||||||
name: Checkout
|
name: Checkout
|
||||||
uses: actions/checkout@v2.3.1
|
uses: actions/checkout@v2.3.1
|
||||||
-
|
-
|
||||||
name: Login
|
name: Login to DockerHub
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKER_USERNAME_TEST }}
|
username: ${{ secrets.DOCKERHUB_USERNAME_TEST }}
|
||||||
password: ${{ secrets.DOCKER_PASSWORD_TEST }}
|
password: ${{ secrets.DOCKERHUB_PASSWORD_TEST }}
|
||||||
|
logout: ${{ matrix.logout }}
|
||||||
|
-
|
||||||
|
name: Clear
|
||||||
|
if: always()
|
||||||
|
run: |
|
||||||
|
rm -f ${HOME}/.docker/config.json
|
||||||
|
|
||||||
|
gpr:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
logout:
|
||||||
|
- true
|
||||||
|
- false
|
||||||
|
steps:
|
||||||
|
-
|
||||||
|
name: Checkout
|
||||||
|
uses: actions/checkout@v2.3.1
|
||||||
|
-
|
||||||
|
name: Login to GitHub Package Registry
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
registry: docker.pkg.github.com
|
||||||
|
username: ${{ github.repository_owner }}
|
||||||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
logout: ${{ matrix.logout }}
|
||||||
|
-
|
||||||
|
name: Clear
|
||||||
|
if: always()
|
||||||
|
run: |
|
||||||
|
rm -f ${HOME}/.docker/config.json
|
||||||
|
|
||||||
|
gitlab:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
logout:
|
||||||
|
- true
|
||||||
|
- false
|
||||||
|
steps:
|
||||||
|
-
|
||||||
|
name: Checkout
|
||||||
|
uses: actions/checkout@v2.3.1
|
||||||
|
-
|
||||||
|
name: Login to GitLab
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
registry: registry.gitlab.com
|
||||||
|
username: ${{ secrets.GITLAB_USERNAME_TEST }}
|
||||||
|
password: ${{ secrets.GITLAB_PASSWORD_TEST }}
|
||||||
logout: ${{ matrix.logout }}
|
logout: ${{ matrix.logout }}
|
||||||
-
|
-
|
||||||
name: Clear
|
name: Clear
|
||||||
|
|
Loading…
Reference in a new issue