From ad7d30cbb15f709a5e48919a46af57ac15266e66 Mon Sep 17 00:00:00 2001 From: diaznet Date: Sun, 10 Nov 2024 20:35:27 +0100 Subject: [PATCH] Updated github action file --- .github/workflows/docker-image.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 157d764..9353e65 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -19,6 +19,7 @@ jobs: # list of Docker images to use as base name for tags images: | diaznet/arlo-downloader + ghcr.io/diaznet/arlo-downloader # generate Docker tags based on the following events/attributes tags: | type=schedule @@ -42,6 +43,14 @@ jobs: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} + # Log-in to GHCR.io + - name: Login to GitHub Container Registry + uses: docker/login-action@v3.3.0 + with: + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.GITHUB_TOKEN }} + # Checkout - uses: actions/checkout@v4