Skip to content

Merge branch 'main' of https://github.com/SoftwareEngineeringOne/episkos #15

Merge branch 'main' of https://github.com/SoftwareEngineeringOne/episkos

Merge branch 'main' of https://github.com/SoftwareEngineeringOne/episkos #15

name: Build Gui Application
on:
push:
branches:
- main
- alpha
- beta
- next
pull_request:
workflow_dispatch:
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
jobs:
build-tauri:
permissions:
contents: write
strategy:
fail-fast: true
runs-on: 'ubuntu-24.04'
steps:
- uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- run: bun i
- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
- name: Build Tauri
run: bun tauri build
- name: Build Cli
run: cargo build -p episko_cli