Skip to content

Updated brf2ebrl because of fix to issue 59881 #89

Updated brf2ebrl because of fix to issue 59881

Updated brf2ebrl because of fix to issue 59881 #89

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python application
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pdm
pdm install
- name: Build exe
run: |
$env:PATH = "C:\msys64\usr\bin;$env:PATH"
pdm build_exe --assume-yes-for-downloads
- name: Add build data
run: git show --no-patch > Convert2EBRL.dist/build-data.txt
- name: Upload binary artifact
uses: actions/upload-artifact@v4
with:
name: convert2ebrl-dist
path: Convert2EBRL.dist