File tree Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -28,33 +28,36 @@ jobs:
2828
2929 runs-on : ${{ matrix.platform }}
3030 steps :
31- - uses : actions/checkout@v4
31+ - name : Check out a repository
32+ uses : actions/checkout@v4
3233
33- - name : setup node
34+ - name : Setup Node
3435 uses : actions/setup-node@v4
3536 with :
3637 node-version : lts/*
3738
38- - uses : oven-sh/setup-bun@v2
39+ - name : Setup Bun
40+ uses : oven-sh/setup-bun@v2
3941 with :
4042 bun-version : latest
4143
42- - name : install Rust stable
44+ - name : Install Rust stable
4345 uses : dtolnay/rust-toolchain@stable
4446 with :
4547 # Those targets are only used on macos runners so it's in an `if` to slightly speed up windows and linux builds.
4648 targets : ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}
4749
48- - name : install dependencies (ubuntu only)
50+ - name : Install dependencies (Ubuntu only)
4951 if : matrix.platform == 'ubuntu-22.04' # This must match the platform value defined above.
5052 run : |
5153 sudo apt-get update
5254 sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
5355
54- - name : install frontend dependencies
56+ - name : Install frontend dependencies
5557 run : bun install
5658
57- - uses : tauri-apps/tauri-action@v0
59+ - name : Build Tauri App
60+ uses : tauri-apps/tauri-action@v0
5861 env :
5962 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
6063 with :
You can’t perform that action at this time.
0 commit comments