diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f198a79d..eb447a83 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -58,6 +58,13 @@ jobs: - name: Build container image run: docker build . --platform linux/amd64 --target doj-demo --tag ${TAG_NAME} + - name: Log in to the Container registry + uses: docker/login-action@v2 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + - name: Publish to container registry run: docker push ${TAG_NAME}