@@ -55,18 +55,17 @@ jobs:
5555 with :
5656 NIGHTLY : ${{ github.event_name == 'schedule' || inputs.NIGHTLY == true }}
5757
58- # build-windows:
59- # needs: check-skippable
60- # if: needs.check-skippable.outputs.skip != 'true'
61- # uses: ./.github/workflows/cppcmake-windows.yml
62- # secrets: inherit
63- # with:
64- # NIGHTLY: ${{ github.event_name == 'schedule' || inputs.NIGHTLY == true }}
58+ build-windows :
59+ needs : check-skippable
60+ if : needs.check-skippable.outputs.skip != 'true'
61+ uses : ./.github/workflows/cppcmake-windows.yml
62+ secrets : inherit
63+ with :
64+ NIGHTLY : ${{ github.event_name == 'schedule' || inputs.NIGHTLY == true }}
6565
6666 release :
6767 if : github.event_name != 'pull_request'
68- needs : [build-macos, build-ubuntu]
69- # needs: [build-macos, build-ubuntu, build-windows]
68+ needs : [build-macos, build-ubuntu, build-windows]
7069 name : Release
7170 runs-on : ubuntu-24.04
7271 env :
@@ -84,18 +83,17 @@ jobs:
8483 with :
8584 path : target
8685
87- # - name: Remove unsigned Windows build
88- # run: rm -rfv target/*unsigned*
86+ - name : Remove unsigned Windows build
87+ run : rm -rfv target/*unsigned*
8988
9089 - run : find target -type f -exec mv -v {} target \;
9190
92- # - name: Unarchive Windows's build artifacts
93- # run: for f in target/*.zip; do unzip -d target/ "$f" && rm -v "$f"; done
91+ - name : Unarchive Windows's build artifacts
92+ run : for f in target/*.zip; do unzip -d target/ "$f" && rm -v "$f"; done
9493
9594 - name : Release
9695 uses : softprops/action-gh-release@v2
9796 with :
98- body : " The Windows build will not be provided for the time being. Note: #3967"
9997 files : target/*
10098 prerelease : true
10199 tag_name : ${{ env.tag_name }}
0 commit comments