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 f7a85b1 commit bd0aeffCopy full SHA for bd0aeff
1 file changed
.github/workflows/deploy-docs.yml
@@ -21,9 +21,12 @@ jobs:
21
with:
22
fetch-depth: 2
23
24
+ - name: Show commit history
25
+ run: git log --oneline -n 5
26
+
27
- name: Get changed .qmd files on current branch
28
run: |
- git diff --name-only HEAD~1 HEAD | grep -E '\.qmd$' > modified_docs_list.txt
29
+ git diff --name-only HEAD^ HEAD | grep -E '\.qmd$' > modified_docs_list.txt
30
cat modified_docs_list.txt
31
32
- name: Generate intros and keywords
0 commit comments