From 44e9f8b9c5cd03c71e87e3ef58ed55f06eab02e2 Mon Sep 17 00:00:00 2001 From: Pierre Barre Date: Sat, 7 Jan 2023 22:31:01 +0100 Subject: [PATCH] Fix worfklows artifacts upload --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3cbe65c..1b78d60 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -124,13 +124,13 @@ jobs: with: command: build args: --release --target ${{ matrix.target }} --bin privaxy --target-dir target - + - uses: actions/upload-artifact@v3 if: matrix.os != 'windows-latest' with: name: privaxy_nogui-${{ matrix.target }} path: | - target/release/privaxy + target/${{ matrix.target }}/release/privaxy - uses: actions/upload-artifact@v3 if: matrix.os == 'windows-latest'