diff --git a/.github/workflows/build-parser-win.yaml b/.github/workflows/build-parser-win.yaml new file mode 100644 index 0000000..8beef6d --- /dev/null +++ b/.github/workflows/build-parser-win.yaml @@ -0,0 +1,55 @@ + +name: Executable Build + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the "main" branch + push: + branches: [ "main", "master" ] + pull_request: + branches: [ "main", "master" ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + + build: + + strategy: + matrix: + os: [macos-latest, ubuntu-latest, windows-latest] + + runs-on: ${{ matrix.os }} + + steps: + + # Check-out repository + - uses: actions/checkout@v3 + + # Setup Python + - uses: actions/setup-python@v4 + with: + python-version: '3.10' # Version range or exact version of a Python version to use, using SemVer's version range syntax + architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified + cache: 'pip' + - run: | + python -m pip install --upgrade pip + + # Build python script into a stand-alone exe + - uses: Nuitka/Nuitka-Action@main + with: + script-name: parser.py + onefile: true + disable-console: true + + # Uploads artifact + - name: Upload Artifacts + uses: actions/upload-artifact@v3 + with: + name: ${{ runner.os }} Build + path: | + build/*.exe + build/*.bin + build/*.app/**/* + diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..e69de29