build(deps-dev): bump vitepress from 1.4.5 to 1.5.0 (#295) #409
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: docs | |
on: | |
push: | |
branches: | |
workflow_dispatch: | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
if: (github.repository == 'sealdice/sealdice-manual-next' && github.ref_name == 'main') || github.repository != 'sealdice/sealdice-manual-next' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
run_install: false | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: pnpm | |
- name: Pnpm install | |
run: pnpm install | |
- name: Build VuePress site | |
run: pnpm docs:build | |
- name: Deploy to GitHub Pages | |
uses: crazy-max/ghaction-github-pages@v4 | |
with: | |
target_branch: gh-pages | |
build_dir: docs/.vitepress/dist | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Push changes | |
if: github.repository == 'sealdice/sealdice-manual-next' | |
env: | |
KEY: ${{ secrets.KEY }} | |
URL: ${{ secrets.URL }} | |
run: | | |
mkdir -p ~/.ssh/ | |
echo "$KEY" > ~/.ssh/id_rsa | |
sudo chmod 600 ~/.ssh/id_rsa | |
ssh-keyscan gitlab.com >> ~/.ssh/known_hosts | |
git push "$URL" main:gh-pages -f |