Skip to content

Commit

Permalink
change platform to windows
Browse files Browse the repository at this point in the history
  • Loading branch information
OldGodShen committed Jun 4, 2024
1 parent bbed3ee commit 4cc7784
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/tauri.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,27 +11,21 @@ env:

jobs:
build:
runs-on: ubuntu-latest
runs-on: windows-latest

steps:
- uses: actions/checkout@v4

- name: Install bun
run: |
curl -fsSL https://bun.sh/install | bash
echo 'export BUN_INSTALL="$HOME/.bun"' >> ~/.profile
echo 'export PATH="$BUN_INSTALL/bin:$PATH"' >> ~/.profile
source ~/.profile
powershell -c "irm bun.sh/install.ps1 | iex"
- name: Verify bun installation
run: |
source ~/.profile
echo $PATH
bun --version
- name: Build
run: |
source ~/.profile
bun i
bun tauri build --verbose

0 comments on commit 4cc7784

Please sign in to comment.