Skip to content

Commit

Permalink
Removed secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
Tails86 committed Apr 19, 2024
1 parent 989269a commit e93b464
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ jobs:
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
USER: ${{secrets.PYPI_USER}}
PSWD: ${{secrets.PYPI_PASSWORD}}
run: |
python setup.py sdist bdist_wheel
twine upload --repository pypi -u "$USER" -p "$PSWD" dist/*
twine upload --repository pypi dist/*
2 changes: 1 addition & 1 deletion src/ansi_string/ansi_string.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import io
from typing import Any, Union, List

__version__ = '0.0.1'
__version__ = '0.0.2'
PACKAGE_NAME = 'ansi-string'

IS_WINDOWS = sys.platform.lower().startswith('win')
Expand Down

0 comments on commit e93b464

Please sign in to comment.