Skip to content

Commit

Permalink
Update TestPyPI publish command in GitHub Actions workflow
Browse files Browse the repository at this point in the history
- Simplified the publish command by removing unnecessary line breaks and indentation, while preserving the original functionality.
- Ensured consistent formatting for the `run` command to maintain readability and clarity.

Signed-off-by: urasakikeisuke <[email protected]>
  • Loading branch information
urasakikeisuke committed May 15, 2024
1 parent c54bc03 commit a73d02e
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/deploy-testpypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,4 @@ jobs:
run: rye build --clean

- name: Publish to TestPyPI
run: >
rye publish
--yes
--verbose
--repository testpypi
--repository-url https://test.pypi.org/legacy/
--token ${{ secrets.TEST_PYPI_TOKEN }}
run: rye publish --yes --verbose --repository testpypi --repository-url https://test.pypi.org/legacy/ --token ${{ secrets.TEST_PYPI_TOKEN }}

0 comments on commit a73d02e

Please sign in to comment.