diff --git a/.github/workflows/linux-release.yml b/.github/workflows/linux-release.yml index 3ddabc6d9..790ccf05a 100644 --- a/.github/workflows/linux-release.yml +++ b/.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 diff --git a/.github/workflows/macos-release.yml b/.github/workflows/macos-release.yml index ccc480bf2..340ed8a70 100644 --- a/.github/workflows/macos-release.yml +++ b/.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 diff --git a/.github/workflows/windows-release.yml b/.github/workflows/windows-release.yml index f95007185..6cd9438bf 100644 --- a/.github/workflows/windows-release.yml +++ b/.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