testing
Package Application with PyInstaller / build (push) Successful in 26s

This commit is contained in:
LunaChocken
2025-06-07 18:53:54 +01:00
parent a35fc07963
commit ce30cda4e6
2 changed files with 37 additions and 1 deletions
+2 -1
View File
@@ -30,4 +30,5 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: steamPathCLI.sh
path: dist/steamPathCLI.sh
path: dist/steamPathCLI.sh
+35
View File
@@ -0,0 +1,35 @@
name: release
on:
push:
tags:
- '*'
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}}'