Skip to content

Commit 10e1901

Browse files
stainless-app[bot]stainless-bot
authored andcommitted
chore(internal): version bump (#259)
1 parent b565f5d commit 10e1901

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The REST API documentation can be found on [developers.intercom.com](https://dev
1616

1717
```sh
1818
# install from PyPI
19-
pip install python-intercom
19+
pip install --pre python-intercom
2020
```
2121

2222
## Usage

bin/check-release-environment

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,20 @@
11
#!/usr/bin/env bash
22

3+
warnings=()
34
errors=()
45

56
if [ -z "${PYPI_TOKEN}" ]; then
6-
errors+=("The INTERCOM_PYPI_TOKEN secret has not been set. Please set it in either this repository's secrets or your organization secrets.")
7+
warnings+=("The INTERCOM_PYPI_TOKEN secret has not been set. Please set it in either this repository's secrets or your organization secrets.")
8+
fi
9+
10+
lenWarnings=${#warnings[@]}
11+
12+
if [[ lenWarnings -gt 0 ]]; then
13+
echo -e "Found the following warnings in the release environment:\n"
14+
15+
for warning in "${warnings[@]}"; do
16+
echo -e "- $warning\n"
17+
done
718
fi
819

920
lenErrors=${#errors[@]}

0 commit comments

Comments
 (0)