From 22e47807b877d24ec4e3026941aeb47d8607ef1a Mon Sep 17 00:00:00 2001 From: Ryzerth Date: Fri, 29 Jan 2021 17:42:02 +0100 Subject: [PATCH] Fixed autobuild --- .github/workflows/cmake.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 869a0772..63cbc6bd 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -5,6 +5,7 @@ on: [push] env: # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) BUILD_TYPE: Release + RUNNER_WORKSPACE: ${{runner.workspace}} jobs: build: @@ -45,12 +46,12 @@ jobs: run: cmake --build . --config $BUILD_TYPE - name: Create package - working-directory: ${{runner.workspace}} + working-directory: ${{github.workspace}} shell: bash - run: sh make_debian_package.sh ./build + run: sh -make_debian_package.sh $RUNNER_WORKSPACE/build - name: Save built package uses: actions/upload-artifact@v2 with: name: debian-package - path: ${{runner.workspace}}/sdrpp_debian_amd64.deb + path: ${{github.workspace}}/sdrpp_debian_amd64.deb