Skip to content

Commit

Permalink
added main.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
shadoxxhd committed Oct 14, 2024
1 parent 89b6b5a commit ca3bf00
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Package Application with Pyinstaller

on: [ push ]

jobs:
build:
runs-on: windows-latest

steps:
- uses: actions/checkout@v2

- name: Create Executable
uses: sayyid5416/pyinstaller@v1
with:
python_ver: '3.12'
pyinstaller_ver: '==5.13.2'
spec: 'downloader.spec'
requirements: 'requirements.txt'
upload_exe_with_name: 'downloader.exe'
options: --onefile, --name "Steam Workshop Downloader", --windowed,

- uses: actions/upload-artifact@v2
with:
name: downloader.exe
path: src/dist/windows

0 comments on commit ca3bf00

Please sign in to comment.