Skip to content

Commit

Permalink
Generate index (#33)
Browse files Browse the repository at this point in the history
* Generate index.html with tree on release

* Commit after adding index
  • Loading branch information
Lukewh authored Nov 12, 2021
1 parent c6d161c commit 4d1c200
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ jobs:
cd ${{ github.workspace }}
mkdir docs
cp -r build/* docs
- name: Generate index
run: |
cd ${{ github.workspace }}/docs
tree -H '.' -L 3 --noreport --charset utf-8 -o index.html
- name: Commit docs
run: |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add docs
Expand Down

0 comments on commit 4d1c200

Please sign in to comment.