Fixed logic for checking GitHub token
no issue - the check needs to be inverted to ensure we're being passed a token
This commit is contained in:
parent
1365eab4ae
commit
a43c6b3cbc
1 changed files with 2 additions and 2 deletions
|
@ -111,8 +111,8 @@ exports.release = async () => {
|
||||||
|
|
||||||
const githubToken = process.env.GST_TOKEN;
|
const githubToken = process.env.GST_TOKEN;
|
||||||
|
|
||||||
if (githubToken) {
|
if (!githubToken) {
|
||||||
console.log('Please configure your environment with a Github token located in GST_TOKEN');
|
console.log('Please configure your environment with a GitHub token located in GST_TOKEN');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue