mirror of
https://github.com/soxoj/maigret.git
synced 2026-05-06 22:19:01 +00:00
05db32f28f
* Updated example colab file (Due to latest update) * Fix RobertsSpaceIndustries URI * Fix PyInstaller workflow * Fix example.ipynb (read desc.) Currently the version installed via pip3 doesn't appear to contain the latest data.json file, resulting in many false positives.. * Fix non-existant users (read desc.) Fixed non-existant usernames for the following: Telegram (t.me) TikBuddy (tikbuddy.com) FurAffinity (furaffinity.net)
23 lines
450 B
YAML
23 lines
450 B
YAML
name: Package exe with PyInstaller - Windows
|
|
|
|
on:
|
|
push:
|
|
branches: [ main, dev ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: PyInstaller Windows
|
|
uses: JackMcKew/pyinstaller-action-windows@main
|
|
with:
|
|
path: pyinstaller
|
|
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: maigret_standalone_win32
|
|
path: pyinstaller/dist/windows # or path/to/artifact
|