We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d82e648 commit 4026b25Copy full SHA for 4026b25
.github/workflows/build.yml
@@ -27,9 +27,11 @@ jobs:
27
- name: Install frontend dependencies
28
run: yarn install
29
30
- - uses: tauri-apps/tauri-action@v0
31
- env:
32
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ - name: Install rust i686-pc-windows-msvc target
+ run: rustup target add i686-pc-windows-msvc
+
33
+ - name: Build project
34
+ run: yarn release
35
36
- name: Generate artifact name
37
id: vars
@@ -42,5 +44,5 @@ jobs:
42
44
uses: actions/upload-artifact@v4
43
45
with:
46
name: ${{ steps.vars.outputs.artifact_name }}
- path: src-tauri/target/release/omp-launcher.exe
47
+ path: src-tauri/target/i686-pc-windows-msvc/release/omp-launcher.exe
48
if-no-files-found: error
0 commit comments