Skip to content

Commit

Permalink
Create build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Masterain98 authored Feb 29, 2024
1 parent ac6b459 commit 657d95c
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
on:
push:

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ['ubuntu-latest']

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.12

- run: pip install -r requests pyinstaller
- run: pyinstaller main.py
- uses: actions/upload-artifact@v4
with:
name: minimizer
path: dist/

0 comments on commit 657d95c

Please sign in to comment.