From 3998dd4a49ffe648a4cfbf8a339a0203f8967951 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?The=CC=81o=20Monnom?= Date: Mon, 15 May 2023 12:37:25 +0200 Subject: [PATCH] ci: fix windows dst path --- .github/workflows/ffi-builds.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ffi-builds.yml b/.github/workflows/ffi-builds.yml index d91eb12..3cfd7b5 100644 --- a/.github/workflows/ffi-builds.yml +++ b/.github/workflows/ffi-builds.yml @@ -70,7 +70,7 @@ jobs: if: ${{ matrix.os == 'windows-latest' }} run: | cd target/release/ - Compress-Archive -Path ${{ matrix.dylib }} -DestinationPath ${{ steps.setup.outputs.ZIP }} + Compress-Archive -Path ${{ matrix.dylib }} -DestinationPath ${{ github.workspace }}\${{ steps.setup.outputs.ZIP }} # doublezip here but I don't think there is an alternative - name: Upload artifacts