Skip to content

Commit

Permalink
fix: Clean pipelines to ensure no extra releases
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Butler <chris@thebutlers.me>
  • Loading branch information
butler54 committed Jan 21, 2023
1 parent 106a22f commit 1dc2186
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,10 @@ jobs:
env:
PYPI_TOKEN: ${{ secrets.PYPI_KEY }}
GH_TOKEN: ${{ secrets.ADMIN_WRITE_PAT }}
run: semantic-release publish --verbosity=DEBUG
run: |
git config --global user.name "semantic-release (via Github actions)"
git config --global user.email "semantic-release@github-actions"
semantic-release publish --verbosity=DEBUG
# publish:
# name: Publish to PyPi
# if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
Expand Down
1 change: 0 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ repos:
- id: end-of-file-fixer
- id: mixed-line-ending
- id: trailing-whitespace
- id: check-yaml
- id: check-toml
- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.10.0
Expand Down

0 comments on commit 1dc2186

Please sign in to comment.