Skip to content

Commit

Permalink
v0.0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
omegacoreFLL committed Aug 29, 2024
1 parent 7398ea0 commit 8ba28ee
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
31 changes: 31 additions & 0 deletions .github/workflows/auto-publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Publish PythFider

on:
push:
tags:
- 'v*'

jobs:
deploy:
runs-on: ubuntu-latest
environment: PythFinder

steps:
- uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'

- name: Install dependencies
run: pip install setuptools wheel twine

- name: Build the package
run: python setup.py sdist bdist_wheel

- name: Publish to PyPI
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: twine upload dist/*
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

0 comments on commit 8ba28ee

Please sign in to comment.