Skip to content

docs: update public LLM endpoint #23

docs: update public LLM endpoint

docs: update public LLM endpoint #23

Workflow file for this run

name: Build for Windows
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build-windows:
runs-on: windows-latest
steps:
- name: Clone repository
uses: actions/checkout@v5
- name: Set up Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Cache cargo
uses: actions/cache@v4
with:
path: |
~\AppData\Local\cargo\registry
~\AppData\Local\cargo\git
packages/xcap_ffi/target
key: ${{ runner.os }}-cargo-${{ hashFiles('packages/xcap_ffi/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: beta
cache: true
- name: Enable native assets
run: flutter config --enable-native-assets
- name: Install dependencies
run: flutter pub get
- name: Build Windows
run: flutter build windows --release
- name: Archive Windows build
uses: actions/upload-artifact@v4
with:
name: windows-build
path: build\windows\x64\runner\Release\
compression-level: 6
retention-days: 7