Skip to content

Commit 4026b25

Browse files
committed
attempt to make ci use our own build instead of tauri action
1 parent d82e648 commit 4026b25

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,11 @@ jobs:
2727
- name: Install frontend dependencies
2828
run: yarn install
2929

30-
- uses: tauri-apps/tauri-action@v0
31-
env:
32-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30+
- name: Install rust i686-pc-windows-msvc target
31+
run: rustup target add i686-pc-windows-msvc
32+
33+
- name: Build project
34+
run: yarn release
3335

3436
- name: Generate artifact name
3537
id: vars
@@ -42,5 +44,5 @@ jobs:
4244
uses: actions/upload-artifact@v4
4345
with:
4446
name: ${{ steps.vars.outputs.artifact_name }}
45-
path: src-tauri/target/release/omp-launcher.exe
47+
path: src-tauri/target/i686-pc-windows-msvc/release/omp-launcher.exe
4648
if-no-files-found: error

0 commit comments

Comments
 (0)