Skip to content

Commit 21944f7

Browse files
committed
fix(ci): align release workflow with pr one
Signed-off-by: Roberto Scolaro <[email protected]>
1 parent 923b59d commit 21944f7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/release-draft.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,13 @@ jobs:
123123
steps:
124124
- name: Checkout Sysdig
125125
uses: actions/checkout@v4
126+
- name: Install NSIS
127+
if: matrix.os == 'windows-latest'
128+
run: |
129+
choco install nsis -y
126130
- name: Build
127131
run: |
128-
cmake -Wno-dev -DBUILD_DRIVER=OFF -DSYSDIG_VERSION="${{ env.BUILD_VERSION }}" -S . -B build
132+
cmake -Wno-dev -DCMAKE_POLICY_VERSION_MINIMUM=3.5 -DBUILD_DRIVER=OFF -DSYSDIG_VERSION="${{ env.BUILD_VERSION }}" -S . -B build
129133
cmake --build build --target package --config Release
130134
- name: Upload Artifacts
131135
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)