Skip to content

Commit

Permalink
fix: add config github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Lash-L authored Nov 20, 2024
1 parent 5b4b769 commit d043817
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,16 @@ jobs:
- name: Install Dependencies
run: poetry install
shell: bash
- name: Configure Git
run: |
git config user.name "github-actions"
git config user.email "[email protected]"
git remote set-url origin https://${{ secrets.GH_TOKEN }}@github.com/<your-username>/<your-repo>.git
- name: Python Semantic Release
id: release
uses: python-semantic-release/[email protected]
with:
github_token: ${{ secrets.GH_TOKEN }}
git_committer_name: "github-actions"
git_committer_email: "[email protected]"

- name: Publish package distributions to PyPI
uses: pypa/[email protected]
Expand Down

0 comments on commit d043817

Please sign in to comment.