Skip to content

Commit 113838d

Browse files
authored
Fix release-image.yml (#92)
After moving the workflow to a new file, it seems the environment wasn't copied. So the images variable was set to "/", and so it failed with the error " buildx failed with: ERROR: invalid tag "/:0.6.6": invalid reference format"
1 parent dc88824 commit 113838d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/release-image.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ on:
44
release:
55
types: [published]
66

7+
env:
8+
REGISTRY: ghcr.io
9+
IMAGE_NAME: ${{ github.repository }}
10+
711
jobs:
812
push_to_registry:
913
name: Push Docker image to GHCR

0 commit comments

Comments
 (0)