mirror of
https://github.com/docker/login-action.git
synced 2024-11-10 02:33:37 -05:00
e6dc03b339
Bumps [actions/checkout](https://github.com/actions/checkout) from v2.3.1 to v2.3.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2.3.1...2036a08e25fa78bbd946711a407b529a0a1204bf) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
85 lines
1.8 KiB
YAML
85 lines
1.8 KiB
YAML
name: ci
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- releases/v*
|
|
|
|
jobs:
|
|
dockerhub:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
logout:
|
|
- true
|
|
- false
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v2.3.2
|
|
-
|
|
name: Login to DockerHub
|
|
uses: ./
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME_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.2
|
|
-
|
|
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.2
|
|
-
|
|
name: Login to GitLab
|
|
uses: ./
|
|
with:
|
|
registry: registry.gitlab.com
|
|
username: ${{ secrets.GITLAB_USERNAME_TEST }}
|
|
password: ${{ secrets.GITLAB_PASSWORD_TEST }}
|
|
logout: ${{ matrix.logout }}
|
|
-
|
|
name: Clear
|
|
if: always()
|
|
run: |
|
|
rm -f ${HOME}/.docker/config.json
|