Skip to content

Commit

Permalink
test 🧪
Browse files Browse the repository at this point in the history
  • Loading branch information
omegacoreFLL committed Aug 31, 2024
1 parent 8ba28ee commit 8f9efb5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/auto-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Publish PythFider

on:
push:
tags:
- 'v*'
branches:
- main

jobs:
deploy:
Expand All @@ -26,6 +26,9 @@ jobs:

- name: Publish to PyPI
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: twine upload dist/*
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
echo "Token Length: ${#TWINE_PASSWORD}"
twine --version
twine upload --repository-url https://upload.pypi.org/legacy/ dist/*
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
from setuptools import setup, find_packages

# just a test

setup(
name = 'pythfinder',
version = '0.0.5.1',
version = '0.0.5.02',
license = 'MIT',
author = 'Contraș Adrian',
author_email = '[email protected]',
Expand Down

0 comments on commit 8f9efb5

Please sign in to comment.