mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
Dedup pyinstaller actions.
This commit is contained in:
22
.github/actions/build-app/action.yaml
vendored
Normal file
22
.github/actions/build-app/action.yaml
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
name: Build Liberation package
|
||||
description: Assembles the full Liberation 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
|
||||
10
.github/actions/build-front-end/action.yaml
vendored
10
.github/actions/build-front-end/action.yaml
vendored
@@ -1,10 +0,0 @@
|
||||
name: Front-end build
|
||||
description: Builds the Liberation front-end.
|
||||
runs:
|
||||
using: composite
|
||||
steps:
|
||||
- name: Build client
|
||||
shell: powershell
|
||||
run: |
|
||||
cd client
|
||||
npm run build
|
||||
Reference in New Issue
Block a user