mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
Renamed CTLD plugin settings to Retribution, as well as some other miscellaneous files too.
23 lines
503 B
YAML
23 lines
503 B
YAML
name: Build Retribution package
|
|
description: Assembles the full Retribution application.
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Build client
|
|
shell: powershell
|
|
run: |
|
|
cd client
|
|
npm run build
|
|
|
|
- name: Build binaries
|
|
shell: powershell
|
|
run: |
|
|
./venv/scripts/activate
|
|
$env:PYTHONPATH=".;./pydcs"
|
|
pyinstaller pyinstaller.spec
|
|
|
|
- name: Install changelog
|
|
shell: powershell
|
|
run: |
|
|
Copy-Item .\changelog.md .\dist
|