From ec295c9f093099363e60332acb172b613085f694 Mon Sep 17 00:00:00 2001 From: Prad Nukala Date: Wed, 4 Dec 2024 21:23:36 -0500 Subject: [PATCH] refactor: optimize build process by removing unnecessary npm install step --- .github/workflows/release.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7b30e3b..7cddc3f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,17 +18,19 @@ jobs: fetch-depth: 0 token: ${{ secrets.GITHUB_TOKEN }} - - name: Setup Git Config - run: | - git config user.name "Prad N." - git config user.email "prad@sonr.io" - - uses: oven-sh/setup-bun@v2 with: bun-version: latest + - name: Setup Git Config + run: | + bun install + git config user.name "Prad N." + git config user.email "prad@sonr.io" + + - name: Build - run: bun install && bun run build + run: bun run build - name: 'Automated Version Bump' run: |