chore: update rule configs for all plugins #52
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: Publish GH Pages | |
on: | |
push: | |
branches: | |
- master | |
env: | |
# https://github.com/actions/setup-node/issues/899 | |
SKIP_YARN_COREPACK_CHECK: 1 | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "20" | |
cache: yarn | |
- name: Install dependencies | |
run: | | |
yarn set version stable | |
yarn install --immutable | |
- name: Build website | |
run: yarn build | |
working-directory: ./website | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./website/build |