Skip to content

Commit

Permalink
revert to npm
Browse files Browse the repository at this point in the history
  • Loading branch information
Zachary Charlop-Powers authored and Zachary Charlop-Powers committed Mar 13, 2024
1 parent 999deab commit 89b3527
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -52,5 +50,4 @@ jobs:
releaseBody: 'Release of the Bioinformaticstoolkit using Github Actions'
releaseDraft: true
prerelease: false
tauriScript: 'tauri'

4 changes: 2 additions & 2 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down

0 comments on commit 89b3527

Please sign in to comment.