From 2964de52d9e1265f4662eaf6aeaae25866ffeeb1 Mon Sep 17 00:00:00 2001 From: Joel Wurtz Date: Mon, 10 Jun 2024 10:37:14 +0200 Subject: [PATCH] feat(ci): login to docker --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 317a75c..a74a56c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,6 +53,10 @@ jobs: - name: Set Docker Socket Host run: echo "DOCKER_SOCKET_PATH=${DOCKER_HOST:5}" >> $GITHUB_ENV + - name: Log in to registry + shell: bash + run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin + # Setup PHP - name: Setup PHP uses: shivammathur/setup-php@v2