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