1
0
mirror of https://github.com/ciromattia/kcc synced 2025-12-13 17:56:30 +00:00

update README.md

This commit is contained in:
darodi
2023-01-19 01:04:45 +01:00
parent b4d86fed7f
commit bc6b26862f
2 changed files with 84 additions and 14 deletions

View File

@@ -1,6 +1,6 @@
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Publish Python distributions to PyPI
name: Publish Python distributions to PyPI and TestPyPI
on:
push:
@@ -37,15 +37,15 @@ jobs:
- name: Build Dist
run: |
python setup.py sdist
# - name: Release On TestPyPI
# uses: pypa/gh-action-pypi-publish@release/v1
# with:
# user: __token__
# password: ${{ secrets.TEST_PYPI_API_TOKEN }}
# repository_url: https://test.pypi.org/legacy/
# skip_existing: true
# verbose: true
# print_hash: true
- name: Release On TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
skip_existing: true
verbose: true
print_hash: true
- name: Publish a Python distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with: