Fix missing glow on memberslist #4
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 CSS | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build CSS | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout theme | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: latest | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build CSS | |
run: pnpm run build:css | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_branch: deploy | |
publish_dir: "./" |