From 33ae24f05846c1fd1091ee1227e1a655ca03fb1b Mon Sep 17 00:00:00 2001 From: Jan-Niklas Weder Date: Thu, 16 May 2024 18:28:25 +0200 Subject: [PATCH] Fix Action --- .github/workflows/test-build-and-publish.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-build-and-publish.yml b/.github/workflows/test-build-and-publish.yml index cd6476f..f6af8cc 100644 --- a/.github/workflows/test-build-and-publish.yml +++ b/.github/workflows/test-build-and-publish.yml @@ -97,8 +97,10 @@ jobs: - name: Get file path id: path run: | - file_path = $((find -name cobramod-*.whl)) + file_path = $(find -name cobramod-*.whl) echo "file-path=$file_path" >> "$GITHUB_OUTPUT" + echo $file_path + echo ${{ steps.path.outputs.file-path }} - name: Install CobraMod & dependencies from wheel run: pip install ${{ steps.path.outputs.file-path }}