Skip to content

Commit

Permalink
buildable exe
Browse files Browse the repository at this point in the history
  • Loading branch information
Nazar1ky committed May 8, 2024
1 parent 0d849ce commit b158aeb
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions .github/workflow/actions.yaml
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
name: Deploy (Windows)
name: Deploy (Windows)

on: [push, pull_request]
on: [push, pull_request]

jobs:
build-windows:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
jobs:
build-windows:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Package
run: |
pip install pyinstaller
pyinstaller --onefile -n FriendsRemover main.py
- name: Package
run: |
pip install pyinstaller
pyinstaller --onefile -n FriendsRemover main.py
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: FriendsRemover
path: dist/win/FriendsRemover.exe
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: FriendsRemover
path: dist/win/FriendsRemover.exe

0 comments on commit b158aeb

Please sign in to comment.