Drop focus when out of render distance #9
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: Release | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| permissions: | |
| contents: write | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Configure | |
| run: cmake -B build -A Win32 "-DCLASSICAPI_TAG=${{ github.ref_name }}" | |
| - name: Build | |
| run: cmake --build build --config Release | |
| - name: Stage release bundle | |
| shell: pwsh | |
| run: | | |
| $tag = '${{ github.ref_name }}' | |
| $version = $tag -replace '^v','' | |
| $stage = "ClassicAPI-$tag" | |
| New-Item -ItemType Directory -Force -Path $stage | Out-Null | |
| Copy-Item build/Release/ClassicAPI.dll $stage | |
| Copy-Item -Recurse 'AddOns/!!!ClassicAPI' $stage | |
| # Stamp the addon's TOC version line from the tag (drops the leading `v`) | |
| $toc = Join-Path $stage '!!!ClassicAPI/!!!ClassicAPI.toc' | |
| (Get-Content $toc) -replace '^## Version:.*', "## Version: $version" | | |
| Set-Content $toc | |
| Compress-Archive -Path "$stage/*" -DestinationPath "ClassicAPI-Bundle-$tag.zip" | |
| Compress-Archive -Path "$stage/!!!ClassicAPI" -DestinationPath "ClassicAPI-AddOnOnly-$tag.zip" | |
| - name: Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: | | |
| ClassicAPI-Bundle-${{ github.ref_name }}.zip | |
| ClassicAPI-AddOnOnly-${{ github.ref_name }}.zip | |
| ClassicAPI-${{ github.ref_name }}/ClassicAPI.dll | |
| generate_release_notes: true |