Skip to content

Commit

Permalink
Create pages-deployment.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
bloxster authored Oct 9, 2024
1 parent fa72860 commit 9d45793
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/pages-deployment.yaml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 9d45793

Please sign in to comment.