From ed44f7d8acd8e9dd035140a208aeced3070b29c9 Mon Sep 17 00:00:00 2001 From: goat du site <72492241+aguacero7@users.noreply.github.com> Date: Tue, 18 Mar 2025 14:56:47 +0100 Subject: [PATCH] =?UTF-8?q?fix(ci):=20probleme=20de=20commande=20execut?= =?UTF-8?q?=C3=A9e=20dans=20le=20workflow=20deploy?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci-release.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-release.yml b/.github/workflows/ci-release.yml index 3607742..40ee481 100644 --- a/.github/workflows/ci-release.yml +++ b/.github/workflows/ci-release.yml @@ -18,8 +18,11 @@ jobs: uses: actions/checkout@v3 with: fetch-depth: 0 - - - name: Exécuter Python Semantic Release - uses: python-semantic-release/[email protected] - with: - github_token: ${{ secrets.GITHUB_TOKEN }} + - name: Installer le package python semantic release + run: | + python -m pip install --upgrade pip + pip install python-semantic-release + - name: Générer une nouvelle version + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: semantic-release publish \ No newline at end of file