Skip to content

Update layout.html

Update layout.html #31

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Build and deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
name: Deploy
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v1
with:
node-version: '12'
- run: npm install
- run: npm run build
- name: Publish
uses: cloudflare/[email protected]
with:
apiToken: ${{ secrets.CF_API_TOKEN }}