mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-09-19 13:57:25 +00:00
132d6bfc86
Python has been also bumped to the latest 3.11 LTS release, but we will probably need to consider a mayor version bump in the future, since it has only ~ 1 year of security updates.
68 lines
1.8 KiB
YAML
68 lines
1.8 KiB
YAML
name: Builder Win
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
build-win:
|
|
name: Build PluginLoader for Win
|
|
runs-on: windows-2022
|
|
|
|
steps:
|
|
- name: Checkout 🧰
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up NodeJS LTS 💎
|
|
uses: actions/setup-node@v7
|
|
with:
|
|
node-version: "lts/*"
|
|
|
|
- name: Set up Python 3.11 🐍
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: "3.11"
|
|
|
|
- name: Install Poetry
|
|
uses: snok/install-poetry@v1
|
|
with:
|
|
virtualenvs-create: false
|
|
|
|
- name: Install Python dependencies ⬇️
|
|
working-directory: ./backend
|
|
run: |
|
|
C:\Users\runneradmin\.local\bin\poetry self add "poetry-dynamic-versioning[plugin]"
|
|
C:\Users\runneradmin\.local\bin\poetry install --no-interaction
|
|
|
|
- name: Install JS dependencies ⬇️
|
|
working-directory: ./frontend
|
|
run: |
|
|
npm i -g pnpm
|
|
pnpm i --frozen-lockfile --dangerously-allow-all-builds
|
|
|
|
- name: Build JS Frontend 🛠️
|
|
working-directory: ./frontend
|
|
run: pnpm run build
|
|
|
|
- name: Build Python Backend 🛠️
|
|
working-directory: ./backend
|
|
run: |
|
|
C:\Users\runneradmin\.local\bin\poetry dynamic-versioning
|
|
C:\Users\runneradmin\.local\bin\poetry run pyinstaller pyinstaller.spec
|
|
|
|
- name: Build Python Backend (noconsole) 🛠️
|
|
working-directory: ./backend
|
|
run: $env:DECKY_NOCONSOLE = 1; C:\Users\runneradmin\.local\bin\poetry run pyinstaller pyinstaller.spec
|
|
|
|
- name: Upload package artifact ⬆️
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: PluginLoader Win
|
|
path: |
|
|
./backend/dist/PluginLoader.exe
|
|
./backend/dist/PluginLoader_noconsole.exe
|
|
|