From 937962faacb7fcae01f5f62885e6d9e61e5bdaeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?The=CC=81o=20Monnom?= Date: Fri, 9 Jun 2023 23:16:40 +0200 Subject: [PATCH] fix: ffi builds output ... --- .github/workflows/ffi-builds.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ffi-builds.yml b/.github/workflows/ffi-builds.yml index 84c7932..ab3ff6b 100644 --- a/.github/workflows/ffi-builds.yml +++ b/.github/workflows/ffi-builds.yml @@ -67,13 +67,13 @@ jobs: - name: Zip artifact (Unix) if: ${{ matrix.os != 'windows-latest' }} run: | - cd ${{ matrix.target }}/target/release/ + cd target/${{ matrix.target }}/release/ zip ${{ github.workspace }}/${{ steps.setup.outputs.ZIP }} ${{ matrix.dylib }} - name: Zip artifact (Windows) if: ${{ matrix.os == 'windows-latest' }} run: | - cd ${{ matrix.target }}/target/release/ + cd target/${{ matrix.target }}/release/ Compress-Archive -Path ${{ matrix.dylib }} -DestinationPath ${{ github.workspace }}\${{ steps.setup.outputs.ZIP }} # doublezip here but I don't think there is an alternative