Skip to content

Commit ccbb38b

Browse files
committed
Merge branch 'develop'
2 parents f39b502 + 0c7664d commit ccbb38b

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/publish-ghcr.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ jobs:
3636
- name: Determine image name and tags
3737
id: meta
3838
run: |
39-
IMAGE="ghcr.io/${{ github.repository_owner }}/filmaffinity-scores"
39+
IMAGE_OWNER=$(echo "${{ github.repository_owner }}" | tr '[:upper:]' '[:lower:]')
40+
echo "image=ghcr.io/${IMAGE_OWNER}/filmaffinity-scores" >> "$GITHUB_OUTPUT"
4041
TAGS="${IMAGE}:latest ${IMAGE}:${{ github.sha }}"
4142
if [[ "${GITHUB_REF}" == refs/tags/* ]]; then
4243
TAG_NAME=${GITHUB_REF#refs/tags/}

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,14 +89,12 @@ See [DOCKER.md](DOCKER.md) for build and run instructions using Docker and Docke
8989

9090
**Published image**
9191

92-
Official images are published to GitHub Container Registry at `ghcr.io/Cruzadera/filmaffinity-scores` by CI. To pull:
92+
Official images are published to GitHub Container Registry at `ghcr.io/cruzadera/filmaffinity-scores` by CI. To pull:
9393

9494
```bash
95-
docker pull ghcr.io/Cruzadera/filmaffinity-scores:latest
95+
docker pull ghcr.io/cruzadera/filmaffinity-scores:latest
9696
```
9797

98-
Replace `Cruzadera` with the GitHub user or organization that hosts the repository.
99-
10098
---
10199

102100
## 🔗 Integrations

0 commit comments

Comments
 (0)