From 1514e98d12b62664faf62ec2c4e9c15bc3b1a42c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9C=D0=B0=D0=BA=D1=81=D0=B8=D0=BC=20=D0=98=D0=B2=D0=B0?= =?UTF-8?q?=D0=BD=D0=BE=D0=B2?= Date: Fri, 18 Oct 2024 10:31:08 +0300 Subject: [PATCH] chore: ignore empty git history from latest tag (#680) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9d60eca8..a5c40ed4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,11 +39,11 @@ jobs: - uses: taiga-family/ci/actions/setup/node@v1.93.3 - run: | # prevent fatal: ref HEAD is not a symbolic ref - git checkout -f main + git checkout -f main > /dev/null # node_modules is correct # because installed before checkout main - npx release-it --dry-run --ci + npx release-it --dry-run --ci --no-git.requireCommits concurrency: group: ${{ github.workflow }}-${{ github.ref }}