diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index adf9f53..0d260ca 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -40,7 +40,7 @@ jobs: python -m twine upload dist/* - name: Push changes back to repository - uses: ad-m/github-push-action@v1 + uses: stefanzweifel/git-auto-commit-action@v4 with: - github_token: ${{ secrets.GITHUB_TOKEN }} + commit_message: "Bump version to ${{ steps.bump_version.outputs.new_version }}" branch: main diff --git a/setup.py b/setup.py index 65c312b..9509b6f 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name="anygen", - version="1.0.1", + version="1.0.2", author="Abdul Waheed", author_email="abdulwaheed1513@gmail.com", description="A unified interface for text generation using Hugging Face, OpenAI, and Gemini models.",