Skip to content

Package with pyinstaller and add to release #6

Package with pyinstaller and add to release

Package with pyinstaller and add to release #6

Workflow file for this run

name: Package with pyinstaller and add to release
on:
workflow_dispatch:
release:
types: [published]
jobs:
pyinstaller-build:
runs-on: windows-latest
steps:
- name: PyInstaller Action
id: pyinstall
uses: Martin005/[email protected]
with:
spec: server_update.py
exe_path: dist
options: --onefile, --name "server_update"
- name: Upload Release
uses: AButler/[email protected]
with:
files: "dist/server_update.exe"
repo-token: ${{ secrets.GITHUB_TOKEN }}