Skip to content

Commit

Permalink
Update pyinstallerlinux.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Cart1416 authored Nov 21, 2024
1 parent 68896b0 commit 39aca21
Showing 1 changed file with 4 additions and 23 deletions.
27 changes: 4 additions & 23 deletions .github/workflows/pyinstallerlinux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,32 +3,13 @@ name: PyInstaller Linux Build
on:
push:
branches:
- "**" # Trigger build on push to the main branch
- "**"

jobs:
build:
runs-on: ubuntu-22.04 # Use a suitable Ubuntu version
runs-on: ubuntu-22.04

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'

- name: Install dependencies
- name: github actions sucks
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run PyInstaller to Build Executable
run: |
pyinstaller --onefile --windowed --distpath ./dist baldilevelsaver.py
- name: Upload Executable Artifact
uses: actions/upload-artifact@v3
with:
name: baldilevelsaverlinux
path: ./dist/*
echo I'm done with trying actions

0 comments on commit 39aca21

Please sign in to comment.