Dedup CacheFetch callbacks via _GetRecord's built-in walk #22
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 | |
| # Stamp the addon's TOC version from the tag (drops the leading `v`) | |
| # BEFORE CMake configure, so the embed step picks up the stamped TOC. | |
| # The DLL bundles AddOns/!!!ClassicAPI/ at build time — see the | |
| # `embed_addon` custom command in CMakeLists.txt and the file-read | |
| # hook in src/addons/Embedded.cpp. | |
| - name: Stamp embedded TOC version | |
| shell: pwsh | |
| run: | | |
| $version = '${{ github.ref_name }}' -replace '^v','' | |
| $toc = 'AddOns/!!!ClassicAPI/!!!ClassicAPI.toc' | |
| (Get-Content $toc) -replace '^## Version:.*', "## Version: $version" | | |
| Set-Content $toc | |
| - name: Configure | |
| run: cmake -B build -A Win32 "-DCLASSICAPI_TAG=${{ github.ref_name }}" | |
| - name: Build | |
| run: cmake --build build --config Release | |
| - name: Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: build/Release/ClassicAPI.dll | |
| generate_release_notes: true |