Add msvcrt20.dll #17
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 Release | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get install -y \ | |
| clang \ | |
| lld \ | |
| llvm \ | |
| ninja-build \ | |
| cmake \ | |
| python3 | |
| - name: Configure CMake | |
| run: cmake --preset release | |
| - name: Build | |
| run: cmake --build --preset release | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: dlls | |
| path: build/release/dlls/*/*.dll | |
| if-no-files-found: error | |
| release: | |
| if: startsWith(github.ref, 'refs/tags/') | |
| name: Publish Release | |
| needs: build | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Download static debug | |
| uses: actions/download-artifact@v8 | |
| with: | |
| path: download | |
| merge-multiple: true | |
| - name: Flatten artifacts | |
| run: | | |
| mkdir -p artifacts | |
| find download -type f -exec mv {} artifacts \; | |
| - name: Publish release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: artifacts/* | |
| draft: true | |
| generate_release_notes: true | |
| fail_on_unmatched_files: true |