mirror of
https://github.com/docker/login-action.git
synced 2024-11-09 23:33:24 +01:00
commit
7c9afe235c
1 changed files with 28 additions and 1 deletions
29
.github/workflows/ci.yml
vendored
29
.github/workflows/ci.yml
vendored
|
@ -9,6 +9,33 @@ on:
|
||||||
- master
|
- master
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
dind:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
DOCKER_CONFIG: $HOME/.docker
|
||||||
|
steps:
|
||||||
|
-
|
||||||
|
name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
-
|
||||||
|
name: Login to GitHub Container Registry
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
registry: ghcr.io
|
||||||
|
username: ${{ secrets.GHCR_USERNAME }}
|
||||||
|
password: ${{ secrets.GHCR_PAT }}
|
||||||
|
-
|
||||||
|
name: DinD
|
||||||
|
uses: docker://docker
|
||||||
|
with:
|
||||||
|
entrypoint: docker
|
||||||
|
args: pull ghcr.io/docker-ghactiontest/test
|
||||||
|
-
|
||||||
|
name: Pull private image
|
||||||
|
run: |
|
||||||
|
docker image prune -a -f >/dev/null 2>&1
|
||||||
|
docker pull ghcr.io/docker-ghactiontest/test
|
||||||
|
|
||||||
dockerhub:
|
dockerhub:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
|
@ -97,7 +124,7 @@ jobs:
|
||||||
name: Checkout
|
name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
-
|
-
|
||||||
name: Login to GitHub Package Registry
|
name: Login to GitHub Container Registry
|
||||||
uses: ./
|
uses: ./
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
|
|
Loading…
Reference in a new issue