From dab7e21d0239739bbaf300ad7982396035ca7552 Mon Sep 17 00:00:00 2001 From: Marcin Sawicki Date: Wed, 11 Sep 2024 15:28:26 +0200 Subject: [PATCH] fix(Workflow): test --- .github/workflows/release.yml | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8f7f706c9..341c33862 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,17 +37,23 @@ jobs: - name: Install modules run: npm ci - - name: Build icons - run: npm run build:icons + # - name: Build icons + # run: npm run build:icons - - name: Lerna version - run: lerna version --conventional-commits --no-changelog --no-push --yes + # - name: Lerna version + # run: lerna version --conventional-commits --no-changelog --no-push --yes - name: Display modified files - run: git status --short + run: | + git status --short + git status --short > status.txt + cat status.txt - name: Display detailed diff - run: git diff + run: | + git diff + git diff > diff.txt + cat diff.txt # - name: Build icons # run: npm run build:icons