Skip to content

Fix FL sometimes getting stuck in message loop after quitting #56

Fix FL sometimes getting stuck in message loop after quitting

Fix FL sometimes getting stuck in message loop after quitting #56

Workflow file for this run

name: Build
on: [push, workflow_dispatch, pull_request]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: ilammy/msvc-dev-cmd@v1
with:
arch: win32
- name: Build project
run: |
nmake /nologo
- name: Copy license and ini file to bin
run: |
copy LICENSE "bin/FLSharp_LICENSE.txt"
copy FLSharp.ini "bin"
- name: Upload release build as artifact
uses: actions/upload-artifact@v4
with:
name: FLSharp
path: |
bin/FLSharp.dll
bin/FLSharp.pdb
bin/FLSharp.ini
bin/FLSharp_LICENSE.txt