From f42981d3c7216c475e6144a7964e9e024ca01b7f Mon Sep 17 00:00:00 2001 From: Okinea Dev <81070564+okineadev@users.noreply.github.com> Date: Thu, 31 Oct 2024 20:53:32 +0200 Subject: [PATCH] fix(workflows): :bug: fix failing `icon-review` workflow (#2651) --- .github/workflows/icon-review.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/icon-review.yml b/.github/workflows/icon-review.yml index dd1bd2a71c..210e6baeaf 100644 --- a/.github/workflows/icon-review.yml +++ b/.github/workflows/icon-review.yml @@ -19,11 +19,6 @@ jobs: pull-requests: write steps: - - name: 🔧 Setup Bun - uses: oven-sh/setup-bun@4bc047ad259df6fc24a6c9b0f9a0cb08cf17fbe5 # v2 - with: - bun-version-file: ".bun-version" - - name: 📥 Checkout Fork uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: @@ -40,6 +35,11 @@ jobs: path: main persist-credentials: false + - name: 🔧 Setup Bun + uses: oven-sh/setup-bun@4bc047ad259df6fc24a6c9b0f9a0cb08cf17fbe5 # v2 + with: + bun-version-file: "main/.bun-version" + - name: 🔍 Review SVG files working-directory: main run: | @@ -63,7 +63,7 @@ jobs: with: script: | const iconsCount = parseInt("${{ env.svg_files_count }}"); - const imageURL = "${{ env.image_url }}"); + const imageURL = "${{ env.image_url }}"; const image = `Generated preview`; const pluralS = iconsCount > 1 ? "s" : "";