1#!/bin/bash
2# Copyright 2020 Google LLC
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8#     https://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16set -eo pipefail
17
18# Start the releasetool reporter
19python3 -m pip install gcp-releasetool
20python3 -m releasetool publish-reporter-script > /tmp/publisher-script; source /tmp/publisher-script
21
22# Ensure that we have the latest versions of Twine, Wheel, and Setuptools.
23python3 -m pip install --upgrade twine wheel setuptools
24
25# Disable buffering, so that the logs stream through.
26export PYTHONUNBUFFERED=1
27
28# Move into the package, build the distribution and upload.
29TWINE_PASSWORD=$(cat "${KOKORO_GFILE_DIR}/secret_manager/google-cloud-pypi-token")
30cd github/google-api-python-client
31python3 setup.py sdist bdist_wheel
32twine upload --username __token__ --password "${TWINE_PASSWORD}" dist/*
33