Fix bug where waypoint placement window was hidden even when placing … #2348
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 Map Editor | |
| on: | |
| push: | |
| branches: [ master, tsclient, yr ] | |
| pull_request: | |
| branches: [ master, tsclient, yr ] | |
| workflow_dispatch: | |
| jobs: | |
| build-editor: | |
| runs-on: windows-2022 | |
| steps: | |
| - uses: actions/[email protected] | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup .NET Core SDK | |
| uses: actions/[email protected] | |
| with: | |
| dotnet-version: '8.x.x' | |
| - name: Build Editor | |
| run: ./build.ps1 | |
| shell: pwsh | |
| - uses: actions/upload-artifact@v4 | |
| name: Upload Artifacts | |
| with: | |
| name: WorldAlteringEditor | |
| path: ./Build |