Skip to content

Update pyinstaller

Update pyinstaller #2

name: Package Application with Pyinstaller
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4

Check failure on line 17 in .github/workflows/pyinstaller-builds.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/pyinstaller-builds.yaml

Invalid workflow file

You have an error in your yaml syntax on line 17
with:
python-version: "3.11"
- name: Install requirements
run: >-
python3 -m pip install . --user
- name: Package application for Linux
run: >-
cd hasherino && flet pack hasherino.py --add-data UserAuth.html:UserAuth.html
- uses: actions/upload-artifact@v2
with:
name: name-of-artifact
path: hasherino/dist/linux
- name: Package Application for Windows
uses: JackMcKew/pyinstaller-action-windows@main
with:
path: hasherino
- uses: actions/upload-artifact@v2
with:
name: name-of-artifact
path: hasherino/dist/windows