فهرست منبع

chore: update CI workflows to use Bun for package management and build process

CaIon 9 ماه پیش
والد
کامیت
b73af9e88f
3فایلهای تغییر یافته به همراه6 افزوده شده و 6 حذف شده
  1. 2 2
      .github/workflows/linux-release.yml
  2. 2 2
      .github/workflows/macos-release.yml
  3. 2 2
      .github/workflows/windows-release.yml

+ 2 - 2
.github/workflows/linux-release.yml

@@ -23,8 +23,8 @@ jobs:
           CI: ""
         run: |
           cd web
-          npm install
-          REACT_APP_VERSION=$(git describe --tags) npm run build
+          bun install
+          REACT_APP_VERSION=$(git describe --tags) bun run build
           cd ..
       - name: Set up Go
         uses: actions/setup-go@v3

+ 2 - 2
.github/workflows/macos-release.yml

@@ -23,8 +23,8 @@ jobs:
           CI: ""
         run: |
           cd web
-          npm install
-          REACT_APP_VERSION=$(git describe --tags) npm run build
+          bun install
+          REACT_APP_VERSION=$(git describe --tags) bun run build
           cd ..
       - name: Set up Go
         uses: actions/setup-go@v3

+ 2 - 2
.github/workflows/windows-release.yml

@@ -26,8 +26,8 @@ jobs:
           CI: ""
         run: |
           cd web
-          npm install
-          REACT_APP_VERSION=$(git describe --tags) npm run build
+          bun install
+          REACT_APP_VERSION=$(git describe --tags) bun run build
           cd ..
       - name: Set up Go
         uses: actions/setup-go@v3