Skip to content

Commit 7ec5a5c

Browse files
committed
Fix incorrect second tags entry in Docker image GitHub workflow
1 parent 462a023 commit 7ec5a5c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/build-docker-image.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ on:
66
- main
77
paths:
88
- 'build/dockerfile'
9+
- 'build/requirements.txt'
10+
- '.github/workflows/build-docker-image.yml'
911

1012
jobs:
1113
build-and-push:
@@ -28,5 +30,4 @@ jobs:
2830
context: ./
2931
dockerfile: build/dockerfile
3032
push: true
31-
tags: ghcr.io/${{ github.repository }}:${{ github.sha }}
32-
tags: ghcr.io/${{ github.repository }}:latest
33+
tags: ghcr.io/${{ github.repository }}:${{ github.sha }}, ghcr.io/${{ github.repository }}:latest

0 commit comments

Comments
 (0)