Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
78 changes: 0 additions & 78 deletions .github/workflows/dotnet.yaml

This file was deleted.

52 changes: 52 additions & 0 deletions .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: SteamFlow Rust Build

on:
push:
paths:
- "SteamFlow/**"
- ".github/workflows/rust.yaml"
pull_request:

jobs:
steamflow-deb:
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4

- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
build-essential \
pkg-config \
libssl-dev \
libx11-dev \
libxi-dev \
libxrandr-dev \
libxinerama-dev \
libxcursor-dev \
libxkbcommon-dev \
libasound2-dev \
libudev-dev \
libwayland-dev \
libgtk-3-dev

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable

- name: Build SteamFlow (release)
run: cargo build --release --manifest-path SteamFlow/Cargo.toml

- name: Install cargo-deb
run: cargo install cargo-deb --locked

- name: Build .deb package
run: cargo deb --no-build --manifest-path SteamFlow/Cargo.toml

- name: Upload .deb artifact
uses: actions/upload-artifact@v4
with:
name: steamflow-deb
path: |
target/debian/*.deb
46 changes: 0 additions & 46 deletions CustomSteamLauncher/README.md

This file was deleted.

13 changes: 0 additions & 13 deletions CustomSteamLauncher/ROADMAP.md

This file was deleted.

37 changes: 0 additions & 37 deletions CustomSteamLauncher/src/main.rs

This file was deleted.

Loading
Loading