Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
awdev1 authored Oct 8, 2024
1 parent 5490e1d commit 8080c07
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Build and Package with PyInstaller

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x' # Set to your Python version

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pyinstaller
- name: Build executable with PyInstaller and spec file
run: |
pyinstaller script.spec # Use the spec file for the build
- name: List output directory
run: ls dist/

- name: Create ZIP package
run: |
zip -r packaged_app.zip dist/
- name: Upload ZIP file as artifact
uses: actions/upload-artifact@v3
with:
name: packaged-app
path: packaged_app.zip

0 comments on commit 8080c07

Please sign in to comment.