Skip to content

Merge branch 'main' of https://github.com/Raj100/vocab #1

Merge branch 'main' of https://github.com/Raj100/vocab

Merge branch 'main' of https://github.com/Raj100/vocab #1

Workflow file for this run

name: Build Executables
on:
push:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.10
- name: Install dependencies
run: |
pip install pyinstaller requests plyer genanki customtkinter
- name: Build Executable
run: |
pyinstaller --onefile --windowed --add-data "wordmate/offline_words.json:wordmate" wordmate/main.py --name wordmate
- name: Upload Artifact
uses: actions/upload-artifact@v2
with:
name: wordmate-${{ matrix.os }}
path: dist/