chore: Update Windows workflow to include debugging information for W… #66
This file contains 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 and Release) | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
windows_build: | |
uses: ./.github/workflows/windows.yml | |
macos_build: | |
uses: ./.github/workflows/macos.yml | |
release: | |
needs: [windows_build, macos_build] | |
runs-on: ubuntu-latest | |
steps: | |
- name: 下载 Windows 构建产物 (Download Windows Build Artifacts) | |
uses: actions/download-artifact@v3 | |
with: | |
name: windows-mingw64-build | |
path: ./release/windows-mingw64 | |
- name: 下载 macOS 构建产物 (Download macOS Build Artifacts) | |
uses: actions/download-artifact@v3 | |
with: | |
name: macos-build | |
path: ./release/macos | |