ci: remove verbose flag from semantic release commands

This commit is contained in:
Rémi Alvergnat
2023-12-13 13:57:44 +01:00
parent bd66746034
commit 485d79e3f0
+3 -3
View File
@@ -180,7 +180,7 @@ jobs:
git config --global user.name "github-actions"
- name: Bump version
run: semantic-release version -v DEBUG
run: semantic-release version
- name: Binary
run: pyinstaller --dist ./dist guessit.spec
@@ -220,7 +220,7 @@ jobs:
git config --global user.name "github-actions"
- name: Bump version
run: semantic-release version -v DEBUG
run: semantic-release version
- name: Binary
run: pyinstaller --dist ./dist guessit.spec
@@ -271,7 +271,7 @@ jobs:
run: pip install python-semantic-release
- name: Publish release
run: semantic-release publish -v DEBUG
run: semantic-release publish
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}