Skip to content

Commit

Permalink
Update workflow files
Browse files Browse the repository at this point in the history
  • Loading branch information
PKief committed Jul 5, 2024
1 parent 7e77063 commit 2ff604a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Setup Platform 🛠
uses: oven-sh/setup-bun@123c6c4e2fea3eb7bffaa91a85eb6b3d505bf7af # v2
with:
bun-version: 1.1.13
bun-version: 1.1.18

- name: Install dependencies 📦
run: bun install --frozen-lockfile
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/icon-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,16 @@ jobs:
path: main
persist-credentials: false

- name: Setup Platform 🛠
uses: oven-sh/setup-bun@123c6c4e2fea3eb7bffaa91a85eb6b3d505bf7af # v2
with:
bun-version: 1.1.18

- name: Review SVG files 🔍
run: |
cd main
svgFiles=$(git diff --no-index ../main ../fork --diff-filter=ACMRTUX --name-only | grep '.svg$')
echo "SVG files changed: ${svgFiles}"
npx svg-icon-review --bigIcon ${svgFiles}
svgFiles=$(git diff --no-index ../main ../fork --diff-filter=ACMRTUX --name-only | grep '.svg$' | tr '\n' ' ')
bunx --bun svg-icon-review --bigIcon ${svgFiles}
- name: Install jq ⚙️
run: sudo apt-get install jq
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Setup Platform 🛠
uses: oven-sh/setup-bun@123c6c4e2fea3eb7bffaa91a85eb6b3d505bf7af # v2
with:
bun-version: 1.1.13
bun-version: 1.1.18

- name: Install dependencies 📦
run: |
Expand Down

0 comments on commit 2ff604a

Please sign in to comment.