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