diff options
author | Adin Scannell <ascannell@google.com> | 2019-09-11 18:48:26 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-09-11 18:49:53 -0700 |
commit | c06ef5131f1ccd3106ccf4fa4e787db079db2d96 (patch) | |
tree | a533473a3fdfdc6c96c85a33c85128d0ecb00074 /kokoro | |
parent | f52dd451ed4c517d81dc3274568ea214fb218e71 (diff) |
Fix authorization for continuous integration.
The credentials must be explicitly refreshed for pushing to
the repository on the Go branch.
PiperOrigin-RevId: 268589817
Diffstat (limited to 'kokoro')
-rw-r--r-- | kokoro/go.cfg | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/kokoro/go.cfg b/kokoro/go.cfg index d1577252a..759e16152 100644 --- a/kokoro/go.cfg +++ b/kokoro/go.cfg @@ -1,5 +1,19 @@ build_file: "repo/scripts/go.sh" +before_action { + fetch_keystore { + keystore_resource { + keystore_config_id: 73898 + keyname: "kokoro-github-access-token" + } + } +} + +env_vars { + key: "KOKORO_GITHUB_ACCESS_TOKEN" + value: "$KOKORO_ROOT/src/keystore/73898_kokoro-github-access-token" +} + env_vars { key: "KOKORO_GO_PUSH" value: "true" |