We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 439e683 commit f87051bCopy full SHA for f87051b
1 file changed
.github/workflows/test.yml
@@ -117,8 +117,13 @@ jobs:
117
git merge pr-15 --no-edit
118
sed -i 's/localhost:8000/172.28.0.2:8000/g' config/database/update.sh
119
120
- # Verify the change
121
- grep "172.28.0.2" config/database/update.sh || echo "Patch failed!"
+ # === PATCH 2: Fix MinIO Path Mismatch ===
+ # The PR uses '/minio/' but Nginx usually expects '/data/' for MinIO
122
+ # We replace '/minio/' with '/data/' in the URL rewrite script
123
+ sed -i 's|/minio/|/data/|g' config/database/update.sh
124
+
125
+ echo "=== Patched Update Script ==="
126
+ cat config/database/update.sh | grep "172.28.0.2"
127
128
- name: Start Docker Services
129
if: matrix.os == 'ubuntu-latest'
0 commit comments