Skip to content

Compile bloodyAD into standalone binary #4

Compile bloodyAD into standalone binary

Compile bloodyAD into standalone binary #4

Workflow file for this run

name: Compile bloodyAD into standalone binary
on:
push:
branches: [ "msldap" ]
tags:
- '*'
workflow_dispatch:
jobs:
windows-build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
ref: msldap
- uses: actions/setup-python@v5
with:
python-version: '3.8'
- name: Install dependencies
run: |
pip install .
pip install pyinstaller
- name: Compile
run: pyinstaller --distpath . --onefile bloodyAD.py
- name: Release
uses: softprops/action-gh-release@v1
with:
tag_name: test
files: bloodyAD.exe