Files
SteamPathCLI/.gitea/workflows/pyinstaller.yml
T
LunaChocken 0595d127e8
Package Application with PyInstaller / build (push) Successful in 33s
downgrade upload-artifact
2025-06-07 18:44:17 +01:00

33 lines
757 B
YAML

name: Package Application with PyInstaller
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11.0'
- name: Install dependencies
run: >
python -m pip install --upgrade pip
pip install . # Install dependencies; modify if using requirements.txt
- name: Package Application with PyInstaller
run: |
pyinstaller steamPathCLI.spec
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: steamPathCLI
path: dist/steamPathCLI