Fix FL sometimes getting stuck in message loop after quitting #56
This file contains hidden or 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 | |
| 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 |