-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
diaznet
committed
Nov 10, 2024
1 parent
41fe765
commit ad7d30c
Showing
1 changed file
with
9 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/[email protected] | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# Checkout | ||
- uses: actions/checkout@v4 | ||
|
||
|