Skip to content

SystemLink CLI - Initial Implementation #11

SystemLink CLI - Initial Implementation

SystemLink CLI - Initial Implementation #11

Workflow file for this run

name: Scoop Windows Build
on:
workflow_dispatch:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-scoop:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install Poetry
run: pip install poetry
- name: Install dependencies
run: poetry install
- name: Build PyInstaller binary (Windows)
run: poetry run python scripts/build_pyinstaller.py
- name: Build Scoop manifest
run: poetry run python scripts/build_scoop.py
- name: Upload Scoop manifest artifact
uses: actions/upload-artifact@v4
with:
name: scoop-slcli-manifest
path: dist/scoop-slcli.json
- name: Upload slcli.zip artifact
uses: actions/upload-artifact@v4
with:
name: slcli-zip
path: dist/slcli.zip