chore: prune utils and update repl help menu #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: sync_badges_and_docs | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
sync_badges_and_docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- run: | | |
rm -rf .ci_badges | |
npx setup-gh-badges | |
npm i | |
npx typedoc --gitRevision ${{ github.ref }} | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add .ci_badges | |
git add docs | |
touch docs/.nojekyll | |
git commit -m "[CI:deploy] sync_badges_and_docs job" | |
- uses: ad-m/github-push-action@master | |
with: | |
branch: ${{ github.ref }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} |