This file contains hidden or 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: 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 |