From 97ba020f144a0deb0a17b293f3d2de4519d4fb05 Mon Sep 17 00:00:00 2001 From: Denys Vitali Date: Mon, 2 Feb 2026 10:00:49 +0100 Subject: [PATCH] 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 --- .github/workflows/ci-cd.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index cf07e8b..3ac0774 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -77,7 +77,7 @@ jobs: id: meta uses: docker/metadata-action@v5 with: - images: ghcr.io/falcondev-oss/github-actions-cache-server + images: ghcr.io/${{ github.repository }} tags: | dev diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7cfcc25..1774e3b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -107,7 +107,7 @@ jobs: id: meta uses: docker/metadata-action@v5 with: - images: ghcr.io/falcondev-oss/github-actions-cache-server + images: ghcr.io/${{ github.repository }} tags: | type=semver,pattern={{version}},value=${{ needs.release.outputs.RELEASE_TAG }} type=semver,pattern={{major}}.{{minor}},value=${{ needs.release.outputs.RELEASE_TAG }}