1#!/bin/bash 2# Copyright 2021 The Chromium OS Authors. All rights reserved. 3# Use of this source code is governed by a BSD-style license that can be 4# found in the LICENSE file. 5 6GITHUB_TOKEN_FILE=$KOKORO_KEYSTORE_DIR/76320_github_token 7TOKEN=$(cat $GITHUB_TOKEN_FILE) 8 9cd "${KOKORO_ARTIFACTS_DIR}/git/crosvm" 10git push --force --all "https://crosvm-bot:${TOKEN}@github.com/google/crosvm.git" 11