Skip to content

Commit f65177f

Browse files
authored
Fix image name syntax in Docker workflow
There has been an additional slash in the docker image name, which lead to an error in the build process.
1 parent 67e8594 commit f65177f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
env:
1414
REGISTRY: docker.io
15-
IMAGE_NAME: ${{ secrets.DOCKERHUB_USERNAME }}//spaceapi-service
15+
IMAGE_NAME: ${{ secrets.DOCKERHUB_USERNAME }}/spaceapi-service
1616
TARGET_PLATFORMS: linux/amd64,linux/arm64,linux/arm/v7
1717

1818
jobs:

0 commit comments

Comments
 (0)