chore: downgrade sqlite version while building executables (#8435)

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/8445/head
Pranav C 3 weeks ago committed by GitHub
parent f85240848d
commit 0b79e4580a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      .github/workflows/release-executables.yml
  2. 13
      scripts/downgradeSqlite.js

@ -68,6 +68,10 @@ jobs:
- name : Install nocodb, other dependencies and build executables
run: |
cd ./scripts/pkg-executable
# downgrade sqlite3 to 5.1.6 until build related issues are resolved
# https://github.com/TryGhost/node-sqlite3/issues/1748
node ../downgradeSqlite.js
# Install nocodb version based on provided tag name
npm i -E nocodb@${{ github.event.inputs.tag || inputs.tag }}

@ -0,0 +1,13 @@
const fs = require('fs')
const path = require('path');
const filePath = path.join(__dirname, '..', 'scripts','pkg-executable','package.json');
const nocodbSdkPackage = JSON.parse(fs.readFileSync(filePath, 'utf8'))
// downgrade sqlite3 to 5.1.6 until build related issues are resolved
// https://github.com/TryGhost/node-sqlite3/issues/1748
nocodbSdkPackage.overrides = nocodbSdkPackage.overrides || {};
nocodbSdkPackage.overrides.sqlite3 = "5.1.6"
fs.writeFileSync(filePath, JSON.stringify(nocodbSdkPackage, null, 2), 'utf8');
Loading…
Cancel
Save