Skip to content

Commit

Permalink
update doc action
Browse files Browse the repository at this point in the history
  • Loading branch information
konstantin-lukas committed Aug 31, 2024
1 parent 4ce6ef6 commit 700072c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/documetation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,12 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git fetch origin
git fetch --all
git checkout -B documentation
cp -R docs/* .
git add .
git reset --hard origin/main
find . -not -name '.git' -not -name 'docs' -delete
mv -r docs/* .
rmdir docs
git add --all
git commit -m "Deploy TypeDoc documentation for tag ${{ github.ref_name }}"
git push origin documentation --force

0 comments on commit 700072c

Please sign in to comment.