diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index 8ca7b77..0a507d3 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -78,10 +78,10 @@ jobs: run: | set -e IMAGE_VERSION="${{ steps.version.outputs.version }}" - + # Replace {{IMAGE_VERSION}} in template with actual version - cat k8s/manifest-template.yaml | sed "s/{{IMAGE_VERSION}}/${IMAGE_VERSION}/g" > k8s/manifest.yaml - + cat manifest-template.yaml | sed "s/{{IMAGE_VERSION}}/${IMAGE_VERSION}/g" > k8s/manifest.yaml + echo "✅ Updated manifest with version: ${IMAGE_VERSION}" - name: Commit manifest changes diff --git a/k8s/manifest-template.yaml b/manifest-template.yaml similarity index 100% rename from k8s/manifest-template.yaml rename to manifest-template.yaml