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
9 changes: 6 additions & 3 deletions .github/workflows/build-and-publish-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,14 @@ jobs:
- name: Publish wheel to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
# Test
# TWINE_PASSWORD: ${{ secrets.PYPI_UPLOAD_TEST }}
# Production
TWINE_PASSWORD: ${{ secrets.PYPI_UPLOAD }}
# Prodcution
# run: python -m twine upload dist/*.whl
run: python -m twine upload dist/*.whl
# Test
run: python -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*.whl
# run: python -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*.whl

- name: Upload artifact (wheel)
uses: actions/upload-artifact@v4
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta"

[project]
name = "initvenv"
version = "0.1.0a14"
description = "Test InitVenv package. Currently available as a standalone executable at https://github.com/Dev2Forge/Init-Venv/releases."
version = "0.1.0a15"
description = "Cross-language CLI tool written in C# to initialize Python virtual environments instantly with one command: 'InitVenv'. Currently distributed as a standalone .exe, with upcoming PyPI support. Executable at https://github.com/Dev2Forge/Init-Venv/releases."
readme = { file = "README.md", content-type = "text/markdown", charset = "utf-8" }
license = "GPL-3.0"
authors = [{ name = "Dev2Forge", email = "support@dev2forge.software" }]
Expand Down