From e2f71c6f81024354c2d41a4c04108582f2ea5a21 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Thu, 1 Dec 2022 15:44:43 -0800 Subject: [PATCH] Bump ephemeral limit up to 15 minutes per table Refs #1915 --- .github/workflows/deploy-latest.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-latest.yml b/.github/workflows/deploy-latest.yml index f410d482..55c93b70 100644 --- a/.github/workflows/deploy-latest.yml +++ b/.github/workflows/deploy-latest.yml @@ -59,7 +59,11 @@ jobs: cp fixtures.db fixtures2.db - name: Make some modifications to metadata.json run: | - cat fixtures.json | jq '.databases |= . + {"ephemeral": {"allow": {"id": "root"}}}'> metadata.json + cat fixtures.json | \ + jq '.databases |= . + {"ephemeral": {"allow": {"id": "root"}}}' | \ + jq '.plugins |= . + {"datasette-ephemeral-tables": {"table_ttl": 900}}' \ + > metadata.json + cat metadata.json - name: Set up Cloud Run uses: google-github-actions/setup-gcloud@v0 with: