Update build.yml

This commit is contained in:
Piotr Siuszko 2025-09-18 11:31:16 +02:00
parent f015c9b1e0
commit caad8a5eaa
1 changed files with 6 additions and 1 deletions

View File

@ -39,10 +39,15 @@ jobs:
mkdir artifacts mkdir artifacts
mv crates/rpack_egui/RpackInstaller.pkg artifacts/RpackInstaller.pkg mv crates/rpack_egui/RpackInstaller.pkg artifacts/RpackInstaller.pkg
- name: Regular installer - name: Regular installer
if: ${{ !startsWith(runner.os, 'macos') }} if: ${{ startsWith(runner.os, 'ubuntu') }}
working-directory: crates/rpack_egui working-directory: crates/rpack_egui
run: | run: |
just create_installer just create_installer
- name: Windows build
if: ${{ startsWith(runner.os, 'windows') }}
working-directory: crates/rpack_egui
run: |
cargo build --release
- name: Copy artifacts - name: Copy artifacts
if: ${{ startsWith(runner.os, 'windows') }} if: ${{ startsWith(runner.os, 'windows') }}
run: | run: |