From 2c6f5c38edb89dc31c11149b93c3e1c89a19b5f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20LAGACHE?= <43389096+Asuniia@users.noreply.github.com> Date: Wed, 4 Mar 2026 11:33:25 +0100 Subject: [PATCH] fix: Feat/flow (#130) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix * fix * fix * fix * Update docker.yml * Update auto-release.yml --------- Co-authored-by: Théo LAGACHE --- .github/workflows/auto-release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml index 4a40b08c..0e4a4bfa 100644 --- a/.github/workflows/auto-release.yml +++ b/.github/workflows/auto-release.yml @@ -24,6 +24,7 @@ jobs: with: fetch-depth: 0 token: ${{ steps.app-token.outputs.token }} + ref: ${{ github.base_ref }} - uses: pnpm/action-setup@v4 @@ -38,6 +39,8 @@ jobs: - run: git config --global user.email 'github-actions[bot]@users.noreply.github.com' - name: Run release-it - run: pnpm exec release-it --ci + run: | + git pull origin main + pnpm exec release-it --ci env: GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}