From 10e4b73b00e6c6b46e82c7c9663d023f7a2b320a Mon Sep 17 00:00:00 2001 From: LunaChocken Date: Sun, 8 Jun 2025 20:04:39 +0100 Subject: [PATCH] add copy of gitea workflow to github folder workflows --- .github/workflows/pyinstaller.yml | 32 +++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/pyinstaller.yml diff --git a/.github/workflows/pyinstaller.yml b/.github/workflows/pyinstaller.yml new file mode 100644 index 0000000..5cefa12 --- /dev/null +++ b/.github/workflows/pyinstaller.yml @@ -0,0 +1,32 @@ +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@v4 + with: + name: steamPathCLI.sh + path: dist/steamPathCLI.sh