Skip to content

Merge branch 'main' of https://github.com/erigontech/docs #2

Merge branch 'main' of https://github.com/erigontech/docs

Merge branch 'main' of https://github.com/erigontech/docs #2

name: Pages Deployment
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '16.x'
- name: Install dependencies
run: npm install
- name: Build and deploy
env:
NODE_AUTH_TOKEN: ${{ secrets.CLOUDFLARE_PAGES_TOKEN }}
run: |
npm run build
npm run deploy