We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 11d2215 + fbdb500 commit 40cdb0cCopy full SHA for 40cdb0c
index.js
@@ -99,7 +99,10 @@ Pin-Priority: 700" > /etc/apt/preferences.d/chromium.pref'`)
99
core.setFailed("postgresql database timed out")
100
return
101
}
102
- cp.execSync(`psql -d ${connectionString} -c 'CREATE EXTENSION IF NOT EXISTS "pgcrypto";'`)
+ const extensions = ["pgcrypto", "uuid-ossp"]
103
+ extensions.forEach(x => {
104
+ cp.execSync(`psql -d ${connectionString} -c 'CREATE EXTENSION IF NOT EXISTS "${x}";'`)
105
+ })
106
fs.writeFileSync("/tmp/ulid_func.sql", GENERATE_ULID)
107
cp.execSync(`psql -d ${connectionString} < /tmp/ulid_func.sql`)
108
0 commit comments