Skip to content

Commit 1f1a0b7

Browse files
committed
remove duplicate docs badge
1 parent 15fdb83 commit 1f1a0b7

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

.github/workflows/build_release.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,16 @@ jobs:
1616
matrix:
1717
python-version: [3.5, 3.6, 3.7]
1818
steps:
19+
- name: Check Environment
20+
run: |
21+
if [[ -z $AWS_ACCESS_KEY_ID || -z $AWS_SECRET_ACCESS_KEY ]]; then
22+
echo "Missing required environment variables."
23+
echo "If this a pull request check your fork's action history."
24+
exit 1
25+
fi
26+
env:
27+
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
28+
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
1929
- uses: actions/checkout@v1
2030
- name: Setup Python ${{matrix.python-version}}
2131
uses: actions/setup-python@v1
@@ -37,6 +47,7 @@ jobs:
3747
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
3848
AWS_DEFAULT_REGION: us-west-2
3949
CODECOV_UPLOAD_TOKEN: ${{ secrets.CODECOV_UPLOAD_TOKEN }}
50+
4051
release:
4152
needs: build
4253
if: github.event_name == 'release' && github.repository == 'aws/sagemaker-experiments'

README.rst

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@ SageMaker Experiments Python SDK
1919
:target: https://github.com/aws/sagemaker-experiments/blob/master/LICENSE
2020
:alt: License
2121

22-
.. image:: https://readthedocs.org/projects/sagemaker-experiments/badge/?version=stable
23-
:target: https://sagemaker-experiments.readthedocs.io/en/stable/?badge=stable
24-
:alt: Documentation Status
25-
2622
.. image:: https://img.shields.io/pypi/dm/sagemaker-experiments
2723
:target: https://pypi.python.org/pypi/sagemaker-experiments
2824
:alt: PyPI - Downloads
@@ -63,7 +59,7 @@ SageMaker Experiments Python SDK
6359
:target: https://github.com/python/black
6460
:alt: Code style: black
6561

66-
.. image:: https://readthedocs.org/projects/sagemaker-experiments/badge/?version=latest&style=plastic
62+
.. image:: https://readthedocs.org/projects/sagemaker-experiments/badge/?version=latest
6763
:target: https://readthedocs.org/projects/sagemaker-experiments/
6864
:alt: Read the Docs - Sagemaker Experiments
6965

0 commit comments

Comments
 (0)