Skip to content

Commit

Permalink
fancy
Browse files Browse the repository at this point in the history
  • Loading branch information
Snirozu committed Jul 23, 2023
1 parent 3540b63 commit ac49482
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 31 deletions.
28 changes: 0 additions & 28 deletions .github/workflows/linuxbuild.yml

This file was deleted.

28 changes: 25 additions & 3 deletions .github/workflows/winbuild.yml → .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,33 @@
name: Package Windows Application
name: Builds

on:
push:
branches: [ master ]

jobs:
build:
Linux_Build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- uses: actions/setup-python@v4
with:
python-version: '3.10.5'
cache: 'pip'

- name: Install dependencies
run: pip install -r requirements.txt

- name: Build with PyInstaller
run: python build.py

- uses: actions/upload-artifact@v3
with:
name: Linux Build
path: dist/

Windows_Build:
runs-on: windows-latest

steps:
Expand All @@ -25,4 +47,4 @@ jobs:
- uses: actions/upload-artifact@v3
with:
name: Windows Build
path: dist/
path: dist/

0 comments on commit ac49482

Please sign in to comment.