rpack/.github/workflows/build.yml

72 lines
2.2 KiB
YAML

name: Build
on:
workflow_dispatch:
jobs:
build:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/cache@v4
continue-on-error: false
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-build-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-build-
- uses: extractions/setup-just@v2
- uses: taiki-e/install-action@v2
with:
tool: cargo-bundle
- name: Mac build
if: startsWith(runner.os, 'macos')
working-directory: crates/rpack_egui
run: just create_mac_installer
- name: Mac artifacts
if: startsWith(runner.os, 'macos')
run: |
mkdir artifacts
mv crates/rpack_egui/RpackInstaller.pkg artifacts/RpackInstaller.pkg
- name: Regular installer
if: ${{ !startsWith(runner.os, 'macos') }}
working-directory: crates/rpack_egui
run: |
just create_installer
- name: Copy artifacts
if: ${{ startsWith(runner.os, 'windows') }}
run: |
mkdir artifacts
cp target/release/rpack_egui.exe artifacts/rpack_egui.exe
- name: Copy artifacts
if: ${{ startsWith(runner.os, 'ubuntu') }}
run: |
mkdir artifacts
cp target/release/bundle/deb/rpack_egui*.deb artifacts/
cp target/release/bundle/appimage/rpack_egui*.AppImage artifacts/
- uses: actions/upload-artifact@v4
if: startsWith(runner.os, 'macos')
with:
name: macos-installer
path: artifacts
- name: Copy artifacts
if: ${{ startsWith(runner.os, 'ubuntu') }}
run: |
mkdir artifacts
cp target/release/rpack_egui artifacts/rpack_egui
- uses: actions/upload-artifact@v4
if: ${{ !startsWith(runner.os, 'macos') }}
with:
name: ${{ runner.os }}
path: artifacts