diff --git a/.gitea/workflows/pyinstaller.yml b/.gitea/workflows/pyinstaller.yml index d3db475..beabfa2 100644 --- a/.gitea/workflows/pyinstaller.yml +++ b/.gitea/workflows/pyinstaller.yml @@ -7,14 +7,13 @@ 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' + python-version: "3.11.0" - name: Install dependencies run: > @@ -24,11 +23,10 @@ jobs: - name: Package Application with PyInstaller run: | - pyinstaller steamPathCLI.spec + pyinstaller spath.spec - name: Upload artifact uses: actions/upload-artifact@v3 with: - name: steamPathCLI.sh - path: dist/steamPathCLI.sh - + name: spath.sh + path: dist/spath.sh diff --git a/.gitea/workflows/pyinstaller_release.yml b/.gitea/workflows/pyinstaller_release.yml index 46df5be..6c5eb12 100644 --- a/.gitea/workflows/pyinstaller_release.yml +++ b/.gitea/workflows/pyinstaller_release.yml @@ -27,7 +27,7 @@ jobs: - name: Package Application with PyInstaller run: | - pyinstaller steamPathCLI.spec + pyinstaller spath.spec uses: https://gitea.com/actions/release-action@main with: files: |- diff --git a/.github/workflows/pyinstaller.yml b/.github/workflows/pyinstaller.yml index 5cefa12..44abb42 100644 --- a/.github/workflows/pyinstaller.yml +++ b/.github/workflows/pyinstaller.yml @@ -23,10 +23,10 @@ jobs: - name: Package Application with PyInstaller run: | - pyinstaller steamPathCLI.spec + pyinstaller spath.spec - name: Upload artifact uses: actions/upload-artifact@v4 with: - name: steamPathCLI.sh - path: dist/steamPathCLI.sh + name: spath.sh + path: dist/spath.sh diff --git a/steamPathCLI.spec b/steamPathCLI.spec index ff594bd..8f5f577 100644 --- a/steamPathCLI.spec +++ b/steamPathCLI.spec @@ -22,7 +22,7 @@ exe = EXE( a.binaries, a.datas, [], - name='steamPathCLI.sh', + name='spath.sh', debug=False, bootloader_ignore_signals=False, strip=False,