diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5d9c9fd..e166666 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -28,19 +28,17 @@ jobs: - name: install dependencies (ubuntu only) if: matrix.platform == 'ubuntu-22.04' run: | - curl -fsSL https://bun.sh/install | bash - bun install + npm install - name: install dependencies (macos only) if: matrix.platform == 'macos-latest' run: | - brew install oven-sh/bun/bun - bun install + npm install + - name: install dependencies (windows only) if: matrix.platform == 'windows-latest' run: | - powershell -c "irm bun.sh/install.ps1|iex" bun install - uses: tauri-apps/tauri-action@v0 @@ -52,5 +50,4 @@ jobs: releaseBody: 'Release of the Bioinformaticstoolkit using Github Actions' releaseDraft: true prerelease: false - tauriScript: 'tauri' diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 9ff5d99..846f781 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -3,9 +3,9 @@ "version": "0.0.3", "identifier": "com.bioinformatics.toolkit", "build": { - "beforeDevCommand": "bun run dev --port 1420 --no-open", + "beforeDevCommand": "npm run dev --port 1420 --no-open", "devUrl": "http://localhost:1420", - "beforeBuildCommand": "bun run build", + "beforeBuildCommand": "npm run build", "frontendDist": "../dist" }, "app": {