Skip to content

Commit 4a83a0a

Browse files
authored
GHCR- Push
Update backup repo images to push their docker image to GHCR Packages registry
1 parent cac33d7 commit 4a83a0a

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

.github/workflows/build-and-publish.yml

+15-2
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,29 @@ jobs:
1717
username: ${{ secrets.DOCKERHUB_USERNAME }}
1818
password: ${{ secrets.DOCKERHUB_TOKEN }}
1919

20+
- name: Log in to GitHub Container Registry
21+
uses: docker/login-action@v3
22+
with:
23+
registry: ghcr.io
24+
username: ${{ github.actor }}
25+
password: ${{ secrets.GITHUB_TOKEN }}
26+
2027
- name: Extract metadata (tags, labels) for Docker
2128
id: meta
2229
uses: docker/metadata-action@v5
2330
with:
2431
images: ${{ vars.DOCKER_ORG }}/${{ github.event.repository.name }}
2532

26-
- name: Build and push Docker image
33+
- name: Build and push Docker image to Docker Hub
2734
uses: docker/build-push-action@v5
2835
with:
2936
context: .
3037
push: true
3138
tags: ${{ steps.meta.outputs.tags }}
32-
labels: ${{ steps.meta.outputs.labels }}
39+
40+
- name: Build and push Docker image to GitHub Container Registry
41+
uses: docker/build-push-action@v5
42+
with:
43+
context: .
44+
push: true
45+
tags: ghcr.io/${{ github.repository_owner }}/${{ github.event.repository.name }}:${{ steps.meta.outputs.tags }}

0 commit comments

Comments
 (0)