blob: 929c782228756444812ed8d163c7f21c0aa7ccf5 [file] [log] [blame]
Bu Sun Kime72202e2020-02-19 17:58:47 -08001#!/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
Bu Sun Kime72202e2020-02-19 17:58:47 -080016set -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_KEYSTORE_DIR}/73713_google_cloud_pypi_password")
30cd github/python-api-core
31python3 setup.py sdist bdist_wheel
32twine upload --username gcloudpypi --password "${TWINE_PASSWORD}" dist/*