Skip to content

Commit f68c196

Browse files
committed
ci: add tree call for debugging
1 parent b9e027c commit f68c196

1 file changed

Lines changed: 13 additions & 3 deletions

File tree

.github/workflows/docs.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,11 +152,21 @@ jobs:
152152
run: |
153153
git config user.name "github-actions[bot]"
154154
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
155-
git tag --force docs && git push --force origin tag docs
155+
git tag --force docs && git push --force origin tag docs
156+
- name: "Get directory structure"
157+
shell: bash
158+
run: |
159+
sudo apt update && sudo apt intsall -yq tree
160+
echo "tree from single dot"
161+
tree -afh .
162+
echo \n\n
163+
164+
echo "tree from github workspace call"
165+
tree -afh ${{ github.workspace }}
156166
- name: "Docs - draft"
157-
uses: softprops/action-gh-release@master
167+
uses: softprops/action-gh-release@v2
158168
with:
159-
tag_name: "[${{ github.ref_name }} Docs]"
169+
tag_name: "docs"
160170
# repository: ${{ github.repository }}
161171
fail_on_unmatched_files: true
162172
draft: true

0 commit comments

Comments
 (0)