Skip to content

Commit

Permalink
Fix Action
Browse files Browse the repository at this point in the history
  • Loading branch information
JanNiklasWeder committed May 16, 2024
1 parent 2946e8f commit 33ae24f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test-build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit 33ae24f

Please sign in to comment.