Improve some plugin descriptions #119
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: Build and deploy | |
on: | |
push: | |
branches: [master] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Prepare environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "20" | |
- run: npm install --global pnpm | |
- name: Install deps | |
run: pnpm i | |
- name: Build plugins and website | |
run: pnpm build | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./dist | |
enable_jekyll: false # No more jekyll! | |
cname: shelter.xirreal.dev |