From 7c2b0c31f4bd20b3d37fc84739aa248c00c167f9 Mon Sep 17 00:00:00 2001 From: Dreamy <96416330+dreamyfx@users.noreply.github.com> Date: Sun, 26 Apr 2026 14:05:41 +0200 Subject: [PATCH] Add GitHub Actions workflow for ABE decryption build This workflow builds the ABE decryption project on Windows, sets up Python, installs dependencies, and runs the builder script. --- .github/workflows/main.yml | 42 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..12bc5c0 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,42 @@ +name: Build ABE Decryption + +on: + push: + pull_request: + workflow_dispatch: + +jobs: + build: + runs-on: windows-latest + + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-python@v5 + with: + python-version: "3.11" + + - shell: pwsh + run: | + python -m pip install --upgrade pip + if (Test-Path "requirements.txt") { pip install -r requirements.txt } + + - uses: ilammy/msvc-dev-cmd@v1 + with: + arch: x64 + + - shell: pwsh + run: | + where cl + cl + + - shell: pwsh + run: python builder.py + + - uses: actions/upload-artifact@v4 + with: + name: build-output + path: | + build/ + *.dll + *.exe