Skip to content

Commit

Permalink
ci: build and push images to Docker Hub
Browse files Browse the repository at this point in the history
  • Loading branch information
ludovicm67 committed Feb 15, 2023
1 parent 4b3a38a commit 9ce4ebe
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
Expand All @@ -32,7 +38,7 @@ jobs:
uses: zazuko/action-docker-meta@main
id: docker_meta
with:
images: ghcr.io/zazuko/trifid
images: ghcr.io/zazuko/trifid,zazuko/trifid

- name: Build and push Docker images
id: docker_build
Expand Down

0 comments on commit 9ce4ebe

Please sign in to comment.