02731ad9ca
Package Application with PyInstaller / build (push) Successful in 31s
Add ctrl+C better support using try except statements Add workshop paths
36 lines
817 B
YAML
36 lines
817 B
YAML
# DISABLED
|
|
|
|
name: release
|
|
|
|
# on:
|
|
# workflow_dispatch:
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- 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
|
|
uses: https://gitea.com/actions/release-action@main
|
|
with:
|
|
files: |-
|
|
dist/**
|
|
api_key: "${{secrets.RELEASE_TOKEN}}"
|