Skip to content

Commit

Permalink
Fix changed-notebooks step
Browse files Browse the repository at this point in the history
  • Loading branch information
frankharkins committed Apr 11, 2024
1 parent 40a9d91 commit 26d75d9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/notebook-test-cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ jobs:
- name: Detect changed notebooks
id: changed-notebooks
if: "!cancelled()"
run: echo "CHANGED_NOTEBOOKS=$(git diff --name-only)" >> "$GITHUB_OUTPUT"
run: |
echo "CHANGED_NOTEBOOKS<<EOF" >> $GITHUB_OUTPUT
echo "$(git diff --name-only)" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
- name: Upload executed notebooks
if: "!cancelled()"
Expand Down

0 comments on commit 26d75d9

Please sign in to comment.