From b65e4325649ffe4ca34dd4ad034dbdbeeeb8d28b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20LAGACHE?= <43389096+Asuniia@users.noreply.github.com> Date: Tue, 3 Mar 2026 16:45:31 +0100 Subject: [PATCH] fix: Feat/new workflow (#115) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * update: release * fix * fix * fix * Update docker.yml * fix * Update auto-release.yml --------- Co-authored-by: Théo LAGACHE --- .github/workflows/auto-release.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml index 2754d5e3..01df03de 100644 --- a/.github/workflows/auto-release.yml +++ b/.github/workflows/auto-release.yml @@ -18,13 +18,19 @@ jobs: with: fetch-depth: 0 + - name: Install pnpm + uses: pnpm/action-setup@v4 + with: + version: 10 + - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: "lts/*" + cache: "pnpm" - name: Install dependencies - run: npm ci + run: pnpm install --frozen-lockfile - name: Configure Git User run: | @@ -34,4 +40,4 @@ jobs: - name: Run release-it env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: npx release-it --ci + run: pnpm exec release-it --ci