diff options
| author | Jesper Jensen <jesper@jnsn.dev> | 2025-04-12 15:47:19 +0200 |
|---|---|---|
| committer | Jesper Jensen <jesper@jnsn.dev> | 2025-04-12 15:47:19 +0200 |
| commit | 052132bbf5022c32cb46fc3b47b0ef205e1a0d41 (patch) | |
| tree | ec70c5a625b5df4e28f9c5240589ad1bd1a95d0b /.github/workflows | |
| parent | e8015a57dea82841fad29628566b1c78e3dbb14f (diff) | |
We need to login to the registry
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/docker-image.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 0775727..7032a84 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -10,6 +10,13 @@ jobs: build: runs-on: ubuntu-latest steps: + - name: Login to GitHub Container Registry + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: token + password: ${{ secrets.GITHUB_TOKEN }} + - name: Checkout uses: actions/checkout@v4 with: |
