Files
Александр f405ae2bcf feat: create autonomous Nivora package repository
Maintain a validated cross-distribution package catalog.
Automate upstream updates, isolated builds, diagnostics, and direct publication.
Build the official GitHub Desktop sources for Linux with working OAuth.
2026-07-25 00:49:32 +10:00

48 lines
1.2 KiB
YAML

name: CI · Ручная сборка пакетов
on:
workflow_dispatch:
inputs:
packages:
description: "all или package ID через пробел"
required: true
default: all
type: string
permissions:
contents: read
concurrency:
group: nivora-clean-build
cancel-in-progress: false
defaults:
run:
shell: bash
jobs:
build:
name: Изолированная сборка
runs-on: ubuntu-24.04
timeout-minutes: 300
steps:
- name: Получить репозиторий
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: Подготовить инструменты
uses: ./.github/actions/setup-stplr-spec
- name: Собрать пакеты
env:
REQUESTED_PACKAGES: ${{ inputs.packages }}
run: |
if [[ "$REQUESTED_PACKAGES" == all ]]; then
tools/clean_build.sh --all
tools/verify_artifacts.sh --all
NIVORA_DEB_BUILD_MODE=host tools/test_package_lifecycle.sh
else
read -r -a packages <<<"$REQUESTED_PACKAGES"
tools/clean_build.sh "${packages[@]}"
tools/verify_artifacts.sh "${packages[@]}"
fi