@@ -55,17 +55,18 @@ jobs:
55
55
with :
56
56
NIGHTLY : ${{ github.event_name == 'schedule' || inputs.NIGHTLY == true }}
57
57
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 }}
65
65
66
66
release :
67
67
if : github.event_name != 'pull_request'
68
- needs : [build-macos, build-ubuntu, build-windows]
68
+ needs : [build-macos, build-ubuntu]
69
+ # needs: [build-macos, build-ubuntu, build-windows]
69
70
name : Release
70
71
runs-on : ubuntu-24.04
71
72
env :
@@ -83,17 +84,18 @@ jobs:
83
84
with :
84
85
path : target
85
86
86
- - name : Remove unsigned Windows build
87
- run : rm -rfv target/*unsigned*
87
+ # - name: Remove unsigned Windows build
88
+ # run: rm -rfv target/*unsigned*
88
89
89
90
- run : find target -type f -exec mv -v {} target \;
90
91
91
- - name : Unarchive Windows's build artifacts
92
- run : for f in target/*.zip; do unzip -d target/ "$f" && rm -v "$f"; done
92
+ # - name: Unarchive Windows's build artifacts
93
+ # run: for f in target/*.zip; do unzip -d target/ "$f" && rm -v "$f"; done
93
94
94
95
- name : Release
95
96
uses : softprops/action-gh-release@v2
96
97
with :
98
+ body : " The Windows build will not be provided for the time being. Note: #3967"
97
99
files : target/*
98
100
prerelease : true
99
101
tag_name : ${{ env.tag_name }}
0 commit comments