From 202ef265dea0bfa9293e831d5865dab753147a03 Mon Sep 17 00:00:00 2001 From: SergeantPanda Date: Sun, 27 Apr 2025 18:30:15 -0500 Subject: [PATCH] Fix sed command delimiter for updating timestamp in version.py --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4ee8db93..6a98d50f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,7 +52,7 @@ jobs: # Update the timestamp in version.py echo "Updating timestamp to ${TIMESTAMP} in version.py" - sed -i "s/__timestamp__ = None.*/__timestamp__ = '${TIMESTAMP}' # Set during CI/CD build process/" version.py + sed -i "s|__timestamp__ = None.*|__timestamp__ = '${TIMESTAMP}' # Set during CI/CD build process|" version.py cat version.py # Verify the file was updated correctly # Make the version.py change part of the Docker build context