diff --git a/.github/workflows/pages-deployment.yaml b/.github/workflows/pages-deployment.yaml new file mode 100644 index 0000000..b9c7567 --- /dev/null +++ b/.github/workflows/pages-deployment.yaml @@ -0,0 +1,28 @@ +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