We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6d0a4b commit 09655caCopy full SHA for 09655ca
1 file changed
.github/workflows/deploy-docs.yml
@@ -29,7 +29,8 @@ jobs:
29
30
- name: Get changed .qmd files on current branch
31
run: |
32
- git diff --name-only HEAD^ HEAD | grep -E '\.qmd$' > modified_docs_list.txt
+ (git diff --name-only HEAD^ HEAD | grep -E '\.qmd$' || true) > modified_docs_list.txt
33
+ echo "Modified .qmd files:"
34
cat modified_docs_list.txt
35
36
- name: Generate intros and keywords
0 commit comments