chore(deps): Bump webpack from 5.89.0 to 5.95.0 (#204) #130
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: Docusaurus deploy | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
environment: deploy | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: src | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: npm | |
cache-dependency-path: src/package-lock.json | |
- name: Build docs | |
run: | | |
cd src | |
npm ci | |
npm run build | |
- uses: actions/checkout@v4 | |
with: | |
path: target | |
ref: main | |
repository: serverpod/serverpod.github.io | |
ssh-key: ${{ secrets.GH_PAGES_DEPLOY }} | |
- name: Deploy to target | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "serverpod_docs" | |
rm -rf target/docs/* | |
cp target/CNAME target/docs | |
cp -r src/build/* target/docs | |
cd target | |
git add . | |
git commit -m "Deployed by Serverpod docs deploy action" | |
git push | |