From a0a7c42bc97c749c591bf0ffc66dd1fa0120c916 Mon Sep 17 00:00:00 2001 From: Narek Galstyan Date: Thu, 14 Nov 2024 22:47:00 -0800 Subject: [PATCH] Change write permissions on tsearch directory --- .github/workflows/test.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index f4548e8f..a6dd2024 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -191,6 +191,7 @@ jobs: sudo chmod 777 -R "/usr/share/postgresql/${PG_VERSION}/extension/" # make sure the rust function exposing custom dict API can change the dictionary files sudo chown -R postgres:postgres /usr/share/postgresql/${PG_VERSION}/tsearch_data/ + sudo chmod 777 -R /usr/share/postgresql/${PG_VERSION}/tsearch_data/ env: PG_VERSION: ${{ matrix.postgres }} - name: Run tests