Build BDFetch Driver #2
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 BDFetch Driver | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: windows-2022 | |
| steps: | |
| - name: 检出代码 | |
| uses: actions/checkout@v4 | |
| - name: 编译驱动 | |
| run: | | |
| cd BDFetch-main/Plugins/Filter | |
| msbuild BDFetch_Driver.sln /p:Configuration=Release /p:Platform=x64 | |
| - name: 上传驱动 | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: BDFetch_Driver | |
| path: BDFetch-main/Plugins/Filter/x64/Release/BDFetch_Driver.sys |