Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,18 +40,18 @@ jobs:
python -m build

- name: Publish to PyPI
if: \${{ inputs.pypi_target != 'testpypi' || github.event_name == 'release' }}
if: ${{ inputs.pypi_target != 'testpypi' || github.event_name == 'release' }}
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: \${{ secrets.PYPI_API_TOKEN }}
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
twine upload dist/* --verbose

- name: Publish to TestPyPI
if: \${{ inputs.pypi_target == 'testpypi' }}
if: ${{ inputs.pypi_target == 'testpypi' }}
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: \${{ secrets.TEST_PYPI_API_TOKEN }}
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_API_TOKEN }}
run: |
twine upload --repository testpypi dist/* --verbose

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Or install directly from GitHub:

```bash
pip install git+https://github.com/Coding-Dev-Tools/api-contract-guardian.git
```

Or install via Homebrew (macOS/Linux):

Expand All @@ -41,7 +42,6 @@ Or install via Scoop (Windows):
scoop bucket add Coding-Dev-Tools https://github.com/Coding-Dev-Tools/scoop-bucket
scoop install api-contract-guardian
```
```

## Quick Start

Expand Down