Updated gui_roster_list_widget
#1088
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: | |
| branches: [ "main" ] | |
| jobs: | |
| build-win: | |
| env: | |
| SOLUTION_FILE_PATH: . | |
| PLATFORM: x86 | |
| strategy: | |
| matrix: | |
| BUILD_CONFIGURATION: [ Debug, Release, ReleaseDedicated ] | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Initialize Submodules | |
| uses: snickerbockers/submodules-init@v4 | |
| - name: Determine Version | |
| id: determine_version | |
| run: | | |
| $version = (git rev-parse --short=7 HEAD).Trim() | |
| Write-Output "Version determined: $version" | |
| Write-Host "::set-output name=version::$version" | |
| - name: Install 7Zip | |
| run: | | |
| Invoke-WebRequest -Uri "https://www.7-zip.org/a/7z1900-x64.msi" -OutFile "$env:TEMP\7z.msi" | |
| Start-Process -Wait -FilePath msiexec -ArgumentList "/i", "$env:TEMP\7z.msi", "/quiet" | |
| - name: Add MSBuild to PATH | |
| uses: microsoft/setup-msbuild@v2 | |
| - name: Build | |
| working-directory: ${{ env.GITHUB_WORKSPACE }} | |
| run: msbuild /m /verbosity:minimal /p:Configuration=${{ matrix.BUILD_CONFIGURATION }} /p:Platform=${{ env.PLATFORM }} ${{ matrix.SOLUTION_FILE_PATH }} | |
| - name: Zip Release | |
| run: | | |
| & "C:\Program Files\7-Zip\7z.exe" a ${{ matrix.BUILD_CONFIGURATION }}.7z ./bin/${{ matrix.BUILD_CONFIGURATION }}/* | |
| - name: Create Release | |
| uses: softprops/action-gh-release@v1 | |
| with: | |
| files: ${{ matrix.BUILD_CONFIGURATION }}.7z | |
| tag_name: ${{ steps.determine_version.outputs.version }} | |
| draft: false | |
| prerelease: false | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| #- name: Upload | |
| # uses: actions/upload-artifact@v3 | |
| # with: | |
| # name: ${{ matrix.BUILD_CONFIGURATION }} | |
| # path: ./bin/${{ matrix.BUILD_CONFIGURATION }}/ |