修改项目结构,不再混淆UI和功能 #8
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: FreeMove_Square Build Madness | |
| on: | |
| push: | |
| paths: | |
| - '**/*.gitaction' | |
| - '**/*.cpp' | |
| - '**/*.h' | |
| - '**/*.vcxproj' | |
| pull_request: | |
| paths: | |
| - '**/*.gitaction' | |
| - '**/*.cpp' | |
| - '**/*.h' | |
| - '**/*.vcxproj' | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - name: 🌀疯狂拉取我的代码到平行宇宙🛸 | |
| uses: actions/checkout@v4 | |
| - name: ⚡召唤MSBuild神器,让它为我而战⚔️ | |
| uses: microsoft/setup-msbuild@v2 | |
| - name: 💥让FreeMove_Square.exe在地狱火焰中诞生🔥 | |
| run: | | |
| msbuild FreeMove_Square.vcxproj /p:Configuration=Release /p:Platform=x64 /m | |
| - name: 🔥把FreeMove_Square.exe扔进GitHub的黑洞里让它永生吧!!!💀👹 | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: FreeMove_Square-Build | |
| path: FreeMove_Square\x64\Release\ |