- #12
Workflow file for this run
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: win | |
| on: | |
| push: | |
| branches: | |
| - DemoApp | |
| permissions: | |
| contents: write | |
| jobs: | |
| build_Windows: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: checkout submodules | |
| run: git submodule update --init --recursive | |
| shell: bash | |
| - name: configure (MSVC x64) | |
| run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -G "Visual Studio 17 2022" -A x64 | |
| - name: build + package | |
| run: | | |
| cmake --build build --config Release | |
| cmake --build build --config Release --target package | |
| - name: upload artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ImCoolBarApp_win_x64 | |
| path: ImCoolBarApp_* | |
| if-no-files-found: warn | |
| - name: Upload to DRAFT release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| tag_name: nightly-draft | |
| name: Nightly Draft | |
| draft: true | |
| prerelease: false | |
| overwrite: true | |
| files: ImCoolBarApp_* |