mirror of https://github.com/waku-org/waku.org.git
ci: add GitHub token to query bounties (#58)
Token has limited access to issues in this repo: https://github.com/waku-org/bounties Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
65d4c32896
commit
5d6220f327
|
@ -28,7 +28,15 @@ pipeline {
|
|||
|
||||
stage('Build') {
|
||||
steps {
|
||||
sh 'yarn build'
|
||||
/* Issues from waku-org/bounties are fetched. */
|
||||
withCredentials([
|
||||
string(
|
||||
credentialsId: 'waku-org-bounties-access-gh-token',
|
||||
variable: 'GITHUB_ACCESS_TOKEN'
|
||||
),
|
||||
]) {
|
||||
sh 'yarn build'
|
||||
}
|
||||
sh "echo ${env.PROD_SITE} > build/CNAME"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue