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 e8304fc commit 8f7ab40Copy full SHA for 8f7ab40
.github/workflows/e2e-tests.yml
@@ -20,6 +20,8 @@ jobs:
20
name: e2e-tests
21
env:
22
PREMIUM_EMBEDDING_TOKEN: ${{ secrets.ENTERPRISE_TOKEN }}
23
+ METABASE_APP_DB_USER: ${{ secrets.DB_USER }}
24
+ METABASE_APP_DB: ${{ secrets.DB_SHOPPY_DATABASE }}
25
permissions:
26
id-token: write
27
contents: read
metabase/entrypoint.sh
@@ -12,7 +12,7 @@ if [ -f $DUMP ]; then
12
case "$METABASE_APP_DB_DUMP_TYPE" in
13
application/x-tar|application/octet-stream)
14
echo "Custom or directory‑format archive → pg_restore"
15
- pg_restore -d "$METABASE_APP_DB_URL" "$DUMP" > /dev/null
+ pg_restore -d "$METABASE_APP_DB_URL" "$DUMP" --no-owner > /dev/null
16
;;
17
text/plain)
18
echo "Plain text SQL → psql"
0 commit comments