Skip to content

Commit f396ab9

Browse files
fix: use dynamic repository for Docker image path
Replace hardcoded ghcr.io/falcondev-oss/github-actions-cache-server with ghcr.io/${{ github.repository }} to allow builds to work in forked repos. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent e26c3a8 commit f396ab9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci-cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
id: meta
7878
uses: docker/metadata-action@v5
7979
with:
80-
images: ghcr.io/falcondev-oss/github-actions-cache-server
80+
images: ghcr.io/${{ github.repository }}
8181
tags: |
8282
dev
8383

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
id: meta
108108
uses: docker/metadata-action@v5
109109
with:
110-
images: ghcr.io/falcondev-oss/github-actions-cache-server
110+
images: ghcr.io/${{ github.repository }}
111111
tags: |
112112
type=semver,pattern={{version}},value=${{ needs.release.outputs.RELEASE_TAG }}
113113
type=semver,pattern={{major}}.{{minor}},value=${{ needs.release.outputs.RELEASE_TAG }}

0 commit comments

Comments
 (0)