1
0
Fork 0
mirror of https://github.com/docker/login-action.git synced 2025-04-24 07:36:36 +02:00

Use core.getBooleanInput

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax 2021-06-22 10:39:55 +02:00
parent e2346b6971
commit 4fd5d8ead6
No known key found for this signature in database
GPG key ID: 3248E46B6BB8C7F7
6 changed files with 34 additions and 7 deletions

View file

@ -28,6 +28,27 @@ jobs:
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
logout:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
logout:
- false
- true
steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: Login to GitHub Container Registry
uses: ./
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
logout: ${{ matrix.logout }}
dind:
runs-on: ubuntu-latest
env: