Skip to content

merge

merge #30

#name: Build and Deploy
#
#on:
# push:
# branches:
# - master
#
#jobs:
# build-and-deploy:
# runs-on: ubuntu-latest
#
# steps:
# - name: Checkout
# uses: actions/checkout@v2
#
# - name: Set up Node.js
# uses: actions/setup-node@v2
# with:
# node-version: '20.14'
#
# - name: Install pnpm
# run: npm install -g pnpm
#
# - name: Install dependencies
# run: pnpm install
#
# - name: Build
# run: pnpm run build
#
# - name: Commit and push changes
# run: |
# git config --global user.name 'RuSaG0'
# git config --global user.email '[email protected]'
# git add docs/
# git commit -m "[auto] build: Update docs folder"
# git push