Skip to content

Merge pull request #10 from shotover/remove_nonsense #4

Merge pull request #10 from shotover/remove_nonsense

Merge pull request #10 from shotover/remove_nonsense #4

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 16
cache: npm
- run: |
npm install --frozen-lockfile &&
echo "<Footer />" | tee -a docs/blog/*.md &&
echo "<Footer />" | tee -a docs/docs/*.md &&
echo "<SocialButtons /><RelatedPosts /><Footer />" | tee -a docs/blog/**/*.md &&
echo "<Footer />" | tee -a docs/docs/**/*.md
- name: Build
run: npm run docs:build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/.vitepress/dist