Skip to content

Commit 1db203d

Browse files
authored
build: update build scripts to prepare for release (#275)
1 parent efc76d5 commit 1db203d

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

packages/google-crc32c/.kokoro/release-windows-wheel.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ set PYTHONUNBUFFERED=1
3434
@echo "## Uploading Wheels ##"
3535

3636
@echo "Move into the package, build the distribution and upload."
37-
set /p TWINE_PASSWORD=<%KOKORO_KEYSTORE_DIR%/73713_google-cloud-pypi-token-keystore-1
37+
set /p TWINE_PASSWORD=<%KOKORO_KEYSTORE_DIR%/73713_google-cloud-pypi-token-keystore-3
3838
call py -3 setup.py sdist || goto :error
3939
call py -3 -m twine upload --skip-existing --username __token__ --password "%TWINE_PASSWORD%" dist/* wheels/google_crc32c* || goto :error
4040

packages/google-crc32c/.kokoro/release/common.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ before_action {
2828
fetch_keystore {
2929
keystore_resource {
3030
keystore_config_id: 73713
31-
keyname: "google-cloud-pypi-token-keystore-1"
31+
keyname: "google-cloud-pypi-token-keystore-3"
3232
}
3333
}
3434
}

packages/google-crc32c/.kokoro/release/linux/common.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ before_action {
3838
fetch_keystore {
3939
keystore_resource {
4040
keystore_config_id: 73713
41-
keyname: "google-cloud-pypi-token-keystore-1"
41+
keyname: "google-cloud-pypi-token-keystore-3"
4242
}
4343
}
4444
}

packages/google-crc32c/.kokoro/release/osx/common.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ before_action {
3838
fetch_keystore {
3939
keystore_resource {
4040
keystore_config_id: 73713
41-
keyname: "google-cloud-pypi-token-keystore-1"
41+
keyname: "google-cloud-pypi-token-keystore-3"
4242
}
4343
}
4444
}

packages/google-crc32c/.kokoro/release/windows/common.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ before_action {
3838
fetch_keystore {
3939
keystore_resource {
4040
keystore_config_id: 73713
41-
keyname: "google-cloud-pypi-token-keystore-1"
41+
keyname: "google-cloud-pypi-token-keystore-3"
4242
}
4343
}
4444
}

packages/google-crc32c/scripts/manylinux/publish_python_wheel.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ python3.9 -m releasetool publish-reporter-script > /tmp/publisher-script; source
2525
export PYTHONUNBUFFERED=1
2626

2727
# Move into the package, build the distribution and upload.
28-
TWINE_PASSWORD=$(cat "${KOKORO_KEYSTORE_DIR}/73713_google-cloud-pypi-token-keystore-1")
28+
TWINE_PASSWORD=$(cat "${KOKORO_KEYSTORE_DIR}/73713_google-cloud-pypi-token-keystore-3")
2929
python3.9 -m twine upload --skip-existing --username __token__ --password "${TWINE_PASSWORD}" ${REPO_ROOT}/wheels/*

packages/google-crc32c/scripts/osx/publish_python_wheel.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ TWINE=${PYTHON_BIN}/twine
2727
# Disable buffering, so that the logs stream through.
2828
export PYTHONUNBUFFERED=1
2929

30-
TWINE_PASSWORD=$(cat "${KOKORO_KEYSTORE_DIR}/73713_google-cloud-pypi-token-keystore-1")
30+
TWINE_PASSWORD=$(cat "${KOKORO_KEYSTORE_DIR}/73713_google-cloud-pypi-token-keystore-3")
3131
${PYTHON} -m twine upload --skip-existing --username __token__ --password "${TWINE_PASSWORD}" ${REPO_ROOT}/wheels/*

0 commit comments

Comments
 (0)