We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b5da577 + e6306f8 commit 8b58427Copy full SHA for 8b58427
1 file changed
.github/workflows/ci.yml
@@ -256,11 +256,15 @@ jobs:
256
for f in ./build_SITL/*_SITL.exe; do
257
mv $f $(echo $f | sed -e 's/_[0-9]\+\.[0-9]\+\.[0-9]\+//')
258
done
259
+ - name: Copy cygwin1.dll
260
+ run: cp /bin/cygwin1.dll ./build_SITL/
261
- name: Upload artifacts
262
uses: actions/upload-artifact@v4
263
with:
264
name: ${{ env.BUILD_NAME }}_SITL-WIN
- path: ./build_SITL/*.exe
265
+ path: |
266
+ ./build_SITL/*.exe
267
+ ./build_SITL/cygwin1.dll
268
269
test:
270
#needs: [build]
0 commit comments