From 0cfb12feb1fdbc7447375f901a61b988273b26a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Alvergnat?= Date: Wed, 13 Dec 2023 09:33:55 +0100 Subject: [PATCH] ci: fix semantic-release commands verbose flag --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de718de..c7f56b8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -102,7 +102,7 @@ jobs: git config --global user.name "github-actions" - name: Bump version - run: semantic-release -v DEBUG version + run: semantic-release version - name: Build run: python setup.py sdist bdist_wheel @@ -139,7 +139,7 @@ jobs: git config --global user.name "github-actions" - name: Bump version - run: semantic-release -v DEBUG version + run: semantic-release version - name: Binary run: pyinstaller --dist ./dist guessit.spec @@ -180,7 +180,7 @@ jobs: git config --global user.name "github-actions" - name: Bump version - run: semantic-release -v DEBUG version + run: semantic-release version -v DEBUG - 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 -v DEBUG version + run: semantic-release version -v DEBUG - 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 -v DEBUG publish + run: semantic-release publish -v DEBUG env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}