Skip to content

Build Linux App (.deb) #1

Build Linux App (.deb)

Build Linux App (.deb) #1

Workflow file for this run

name: Build Desktop (Linux)
on:
# push:
# branches:
# - main
# pull_request:
# branches:
# - main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- name: Build
run: mv Cargo.toml Cargo.toml.bak && cp Cargo.desktop.toml Cargo.toml && cargo build --release
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: web
path: target/dist/t5-rs-desktop