Skip to content

Commit bb7587d

Browse files
committed
fix: lowercase repo name in manifest
1 parent c387d2e commit bb7587d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/docker-publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
PYTHON_VERSION=3.12
8787
8888
manifest:
89-
timeout-minutes: 10
89+
timeout-minutes: 15
9090
needs: build
9191
runs-on: ubuntu-latest
9292
permissions:
@@ -111,6 +111,7 @@ jobs:
111111
- name: Create and push manifest
112112
run: |
113113
IMAGE="${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}"
114+
IMAGE="${IMAGE,,}" # Convert to lowercase
114115
SHA="${{ steps.sha.outputs.short }}"
115116
116117
# Create manifest for commit SHA tag

0 commit comments

Comments
 (0)