We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1fbba8 commit a3524f0Copy full SHA for a3524f0
.github/workflows/docker-publish.yml
@@ -16,11 +16,12 @@ jobs:
16
uses: docker/setup-qemu-action@v3
17
- name: Set up Docker Buildx
18
uses: docker/setup-buildx-action@v3
19
- - name: Login to DockerHub
+ - name: Login to GitHub Container Registry
20
uses: docker/login-action@v3
21
with:
22
- username: ${{ secrets.DOCKERHUB_USERNAME }}
23
- password: ${{ secrets.DOCKERHUB_TOKEN }}
+ registry: ghcr.io
+ username: ${{ github.actor }}
24
+ password: ${{ secrets.GITHUB_TOKEN }}
25
- name: Build and push
26
uses: docker/build-push-action@v5
27
0 commit comments