We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c49aee5 commit aca3f1aCopy full SHA for aca3f1a
1 file changed
.github/workflows/deploy.yml
@@ -25,8 +25,12 @@ jobs:
25
- name: Build docker image
26
run: make -C build rebuild-image@$SUBARCH@$IMAGE
27
28
+ - name: Login to GitHub Container Registry
29
+ uses: docker/login-action@v2
30
+ with:
31
+ registry: ghcr.io
32
+ username: linuxppc
33
+ password: ${{ secrets.GITHUB_TOKEN }}
34
+
35
- name: Push docker image
- env:
- DOCKER_USER: ${{ secrets.DOCKER_USER }}
- DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
36
run: make -C build push-image@$SUBARCH@$IMAGE
0 commit comments