From db5d8db53f30203503fd8f01bcb0139888476f81 Mon Sep 17 00:00:00 2001 From: 20PercentRendered <32398752+20PercentRendered@users.noreply.github.com> Date: Sun, 20 Nov 2022 22:23:59 +0200 Subject: [PATCH] actions: fix output path --- .github/workflows/cmake.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index c771ab3..af28268 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -46,7 +46,7 @@ jobs: with: name: linux-artifacts path: | - ${{github.workspace}}/build/lib + ${{github.workspace}}/output - name: Create Release id: create_release if: ${{ github.event_name == 'workflow_dispatch'}} @@ -63,7 +63,7 @@ jobs: uses: papeloto/action-zip@v1 if: ${{ github.event_name == 'workflow_dispatch'}} with: - files: build/lib + files: output dest: creamlinux.zip - name: Upload Release Assets if: ${{ github.event_name == 'workflow_dispatch'}}