ci: add missing authentication in build image step

This commit is contained in:
Stéphane Bidoul 2021-11-05 23:50:51 +01:00
parent f7f8c03897
commit 98393b9af3
No known key found for this signature in database
GPG key ID: BCAB2555446B5B92

View file

@ -31,6 +31,14 @@ jobs:
runs-on: ubuntu-latest
needs: test
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to ghcr.io
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build image
uses: docker/build-push-action@v2
with: