Build EXE #28
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build EXE | |
on: | |
create: | |
tags: | |
- "*.*.*" | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python (32-bit) | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8 | |
architecture: x86 | |
- name: Install poetry | |
uses: abatilo/actions-poetry@v3 | |
- name: Register gbda_aut.dll | |
run: | | |
Copy-Item .\lib\gbda_aut.dll C:\Windows\System32\ | |
regsvr32 /s C:\Windows\System32\gbda_aut.dll | |
shell: pwsh | |
- name: Install dependencies | |
run: poetry install | |
- name: Build executables | |
run: scripts/build_executables.ps1 | |
- name: Create GitHub Release | |
uses: ncipollo/release-action@v1 | |
with: | |
artifacts: | | |
dist/OpenOpcCli.exe | |
dist/OpenOpcServer.exe | |
dist/OpenOpcService.exe |