From 288c2b57eef26c9cafdd81e07131f95ba3d8ba82 Mon Sep 17 00:00:00 2001 From: Daniel Sanz <13658011+sdn4z@users.noreply.github.com> Date: Tue, 2 Sep 2025 12:36:57 +0200 Subject: [PATCH] ci: fix preview bump version --- .github/workflows/preview-bump-version.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/preview-bump-version.yml b/.github/workflows/preview-bump-version.yml index 2d1c9ddf..bdb87036 100644 --- a/.github/workflows/preview-bump-version.yml +++ b/.github/workflows/preview-bump-version.yml @@ -10,7 +10,7 @@ jobs: container: image: commitizen/commitizen:4.8.3@sha256:08a078c52b368f85f34257a66e10645ee74d8cbe9b471930b80b2b4e95a9bd4a - name: "Bump version and create changelog with commitizen" + name: "Preview next version" steps: - uses: actions/create-github-app-token@a8d616148505b5069dccd32f177bb87d7f39123b # v2.1.1 id: app-token @@ -22,7 +22,11 @@ jobs: fetch-depth: 0 token: ${{ steps.app-token.outputs.token }} ref: ${{ github.head_ref }} + - name: Configure git + run: | + git config --global --add safe.directory "*" # otherwise cz does not find .git/ directory + - id: cz name: Preview next version run: | - cz bump --get-next + cz bump --get-next \ No newline at end of file