Skip to content

Commit

Permalink
fix(Workflow): test
Browse files Browse the repository at this point in the history
  • Loading branch information
marcinsawicki committed Sep 11, 2024
1 parent 5fb66d6 commit dab7e21
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit dab7e21

Please sign in to comment.