build: do not load dotenv on CI
This commit is contained in:
parent
f2a7fd44ce
commit
94ea703a32
4 changed files with 4 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
||||||
require('dotenv-safe').load()
|
if (!process.env.CI) require('dotenv-safe').load()
|
||||||
|
|
||||||
const GitHub = require('github')
|
const GitHub = require('github')
|
||||||
const github = new GitHub()
|
const github = new GitHub()
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env node
|
#!/usr/bin/env node
|
||||||
|
|
||||||
require('dotenv-safe').load()
|
if (!process.env.CI) require('dotenv-safe').load()
|
||||||
require('colors')
|
require('colors')
|
||||||
const args = require('minimist')(process.argv.slice(2), {
|
const args = require('minimist')(process.argv.slice(2), {
|
||||||
boolean: ['automaticRelease', 'notesOnly', 'stable']
|
boolean: ['automaticRelease', 'notesOnly', 'stable']
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env node
|
#!/usr/bin/env node
|
||||||
|
|
||||||
require('dotenv-safe').load()
|
if (!process.env.CI) require('dotenv-safe').load()
|
||||||
require('colors')
|
require('colors')
|
||||||
const args = require('minimist')(process.argv.slice(2))
|
const args = require('minimist')(process.argv.slice(2))
|
||||||
const fs = require('fs')
|
const fs = require('fs')
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
require('dotenv-safe').load()
|
if (!process.env.CI) require('dotenv-safe').load()
|
||||||
|
|
||||||
const GitHub = require('github')
|
const GitHub = require('github')
|
||||||
const github = new GitHub()
|
const github = new GitHub()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue