build(deps): bump ip from 2.0.0 to 2.0.1 (#55) #51
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 | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
- name: Cache Yarn dependencies | |
uses: ./.github/actions/cache | |
with: | |
os: ${{ runner.os }} | |
- name: Install | |
run: yarn | |
- name: Build | |
run: yarn build | |
- name: Set npm token | |
run: | | |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc | |
- name: Publish packages | |
run: yarn pub | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
- name: Install | |
run: yarn | |
- name: Build | |
run: yarn docs:build | |
env: | |
MEILISEARCH_HOST: ${{ secrets.MEILISEARCH_HOST }} | |
MEILISEARCH_READ_KEY: ${{ secrets.MEILISEARCH_READ_KEY }} | |
MEILISEARCH_WRITE_KEY: ${{ secrets.MEILISEARCH_WRITE_KEY }} | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
personal_token: ${{ secrets.WORKFLOW_TOKEN }} | |
external_repository: koishi-bot/wordle | |
publish_branch: pages | |
publish_dir: docs/.vitepress/dist | |
force_orphan: true | |
enable_jekyll: true | |
commit_message: '[skip ci] deploy' |